mini-lang / example.mini
Trae Assistant
feat: complete hf spaces configuration with interactive demo
602c51e
raw
history blame contribute delete
76 Bytes
let x = 1 + 2 * 3;
let y = (x - 2) / 2;
print x;
print y;
print x + y * 10;