clox/script.lox

6 lines
52 B
Plaintext
Raw Normal View History

2019-06-02 14:58:15 -05:00
{
var x=5;
var y=7;
var z=x+y;
print z;
}