-
Notifications
You must be signed in to change notification settings - Fork 245
Supported Languages
danwalmsley edited this page Jan 29, 2017
·
7 revisions
This is a brief list of currently supported languages that the editor recognizes and languages that are planned to be supported.
- C++: This was the first language to be supported and is the language that AvalonStudio focuses on most. C++ support is in
master. C++ has rich language services powered by Clang, and has debugger support for GDB. - C#: Work is in progress, but C# is not yet usable. This is currently in
master. - XML/XAML: Not implemented, but planned.
- JSON: Not yet implemented, but planned.
- D: Work in progress.
- TypeScript: TypeScript is now quite usable in the IDE! Building is supported through
tsc, and running is supported throughIridiumJS(a fork ofJINT), but debugging is not yet supported. To get started with TypeScript, install Node.js and the TypeScript compiler:npm install -g typescript.