VG Language

A lightweight, expressive programming language designed for simplicity and ease of use.

Simple Syntax

Easy to learn and write with intuitive syntax that makes coding accessible to everyone.

Rich Libraries

Comprehensive standard library with built-in functions for common programming tasks.

Fast Execution

Optimized interpreter for quick development and efficient runtime performance.

Quick Start

## Hello World in VG Language
print
"Hello, World!"
## Variables and Loops
var
count = 0
while
count < 5
print
"Count: " + count
count = count + 1
end