This is a Visual Studio Code extension that adds support for the LKT programming language, a custom interpreted language designed to be simple, expressive, and minimal.
With this extension, you can write .lkt files with syntax highlighting and better editing experience inside VS Code.
✨ Features
✅ Syntax highlighting for:
Keywords like fun, var, if, else, return, show
Strings: single and double quotes
Numbers and expressions
Function definitions and calls
✅ Bracket auto-completion ({}, (), [])
✅ Comment support:
Line comment: // comment
Block comment: /* comment */
✅ File recognition for .lkt extension
✅ (Optional) Custom file icon for .lkt files
📸 Example
fun greet(x) = {
if x == 10 = {
return 'yes'
}
else = {
return 'no'
}
show 'done'
}