JECH Lang is an extension for Visual Studio Code that adds syntax highlighting and snippets to your JECH programming language.
✅ Syntax Highlighting
- Keywords:
keep
,say
,when
- Operators:
+
,-
,*
,/
- Strings, numbers, booleans
- Comments
//
correctly colored in gray
✅ Snippets
keep
→ create variable declarationsay
→ create commandsay(...)
when
→ create command
// Example JECH code
keep total = 5;
total = total + 5; // 10
total = total - 2; // 8
total = total * 2; // 16
total = total / 4; // 4
say(total);
keep x = 3;
when (x > 2) {
say("x is greater than 2");
}
There are no additional requirements — just have Visual Studio Code installed.
This extension does not add custom settings for now.
No known issues so far! If you find any bugs, please open a bug report. Issue.
- First version with syntax highlighting and basic snippets.
To learn more about the JECH Lang language, visit the official documentation (coming soon).
Feel free to contribute! Forks, PRs and suggestions are super welcome.
Have fun coding with JECH Lang in VS Code!