This is a visual studio code extension to improve the handling with the programming language nexoscript with syntax highlighting and completion.
- Syntax highlighting for example
fun
,define
,call
andcout
. - You can make custom themes.
- Just download the
.vsix
file from the latest release. - Open visual studio code.
- Go to extensions.
- Click on the three dots.
- Click on 'Install from VSIX'.
- Select the downloaded
.vsix
file.
fun main {
string testString = "Test String"
cout >!> *testString
call testFunction
}
define testFunction {
cout >> "Hello from testFunction!"
}