Skip to content

This repo is an extension for Visual Studio Code that adds syntax highlighting and snippets to your JECH programming language.

Notifications You must be signed in to change notification settings

joaoluke/jech-vscode

Repository files navigation

JECH Lang

JECH Lang is an extension for Visual Studio Code that adds syntax highlighting and snippets to your JECH programming language.


✨ Features

Syntax Highlighting

  • Keywords: keep, say, when
  • Operators: +, -, *, /
  • Strings, numbers, booleans
  • Comments // correctly colored in gray

Snippets

  • keep → create variable declaration
  • say → create command say(...)
  • when → create command

🗂️ Example

// 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");
}

🧩 Requirements

There are no additional requirements — just have Visual Studio Code installed.


⚙️ Extension Settings

This extension does not add custom settings for now.


🐞 Known Issues

No known issues so far! If you find any bugs, please open a bug report. Issue.


📦 Release Notes

0.0.1

  • First version with syntax highlighting and basic snippets.

📚 Working with JECH

To learn more about the JECH Lang language, visit the official documentation (coming soon).


🙌 Contribute

Feel free to contribute! Forks, PRs and suggestions are super welcome.


🚀 Enjoy!

Have fun coding with JECH Lang in VS Code!

About

This repo is an extension for Visual Studio Code that adds syntax highlighting and snippets to your JECH programming language.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published