Skip to content
/ vih Public

Interpreter for vih, a tiny little language

Notifications You must be signed in to change notification settings

vvihorev/vih

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vih

Interpreter for vih, a tiny little language

let max = func(a, b) {
  if (a > b) {
    return a;
  } else {
    return b;
  }
}

let a = 23;
let b = 13;
max(a, b);
python3 vih.py sample_program.vih

About

Interpreter for vih, a tiny little language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages