Skip to content

tiqwab/simple-jvm-lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TODO

  • array type
  • function
  • (class or struct)

PROBLEM

int x = 5
if (x < 6) x = 7 // error since the type of if-statement is not evaluated before.
else 0
x
int x = 5
if (true) {
    int y = 6
    x = x + y
} else {
    int y = 7
    x = x + y
}

NOT TODO

  • error handling

About

A simple jvm language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages