clox/script.lox
2019-06-02 14:58:15 -05:00

6 lines
52 B
Plaintext

{
var x=5;
var y=7;
var z=x+y;
print z;
}