Syntax highlighting, IntelliSense, and language support for MVFV programming language in Visual Studio Code.
Features
✨ Syntax Highlighting - Full color support for MVFV code
🤖 IntelliSense - Autocompletion for all commands
📝 Code Snippets - Quick templates for common patterns
📚 Hover Documentation - Inline help for commands
▶️ Run Integration - Execute MVFV scripts directly
💻 REPL Terminal - Interactive interpreter
Quick Start
Install the extension
Create a file with .mvfv extension
Start coding with full syntax support
Example MVFV Code
# Hello World
print "Hello, MVFV!"
# Variables
var x = 10
var name = "MVFV"
# Math operations
math.add x 5
math.mul 3 7
# String operations
string.upper name
# Control flow
if x > 5 {
print "x is greater than 5"
}
# Loops
for i = 0 to 5 {
print i
}
# Security
sec.mode strict
sec.allow print