Update article.md

Added link to Brython Python transpiler to JavaScript
This commit is contained in:
Denis 2020-08-09 20:25:22 +03:00 committed by GitHub
parent 8d13b7fb88
commit 0557a16f81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,6 +110,7 @@ Examples of such languages:
- [TypeScript](http://www.typescriptlang.org/) is concentrated on adding "strict data typing" to simplify the development and support of complex systems. It is developed by Microsoft.
- [Flow](http://flow.org/) also adds data typing, but in a different way. Developed by Facebook.
- [Dart](https://www.dartlang.org/) is a standalone language that has its own engine that runs in non-browser environments (like mobile apps), but also can be transpiled to JavaScript. Developed by Google.
- [Brython](https://brython.info/) is a Python transpiler to JavaScript that allow to write application in pure Python without JavaScript.
There are more. Of course, even if we use one of transpiled languages, we should also know JavaScript to really understand what we're doing.