JHLang VS Code Extension
A Visual Studio Code extension for syntax highlighting support for JHLang, a custom programming language.
Features
Syntax Highlighting: Recognizes JHLang keywords (cout() , include() and etc.), strings, numbers, comments (// ), and identifiers.
Comment Support: Supports single-line comments starting with // .
File Support: Supports files with .jh and .jhl extensions for syntax highlighting.
Installation
Usage
Once the extension is installed, create or open a file with the .jh (or .jhl ) extension to see syntax highlighting for JHLang.
Code Example
Heres code example:
// JHLang Code Example
x = null;
prompt(x, "Enter your name: ");
cout("Hello, ", x, "!");
end(0);
| |