dilaria/test.dil
2022-05-30 19:10:53 +02:00

15 lines
No EOL
181 B
Text

fn cooler_add(a, b) {
return a + b;
}
fn add(a, b) {
return cooler_add(a, b);
}
let added = add(1, 5);
if added == 6 {
print "correct";
} else {
print "FAILED";
}