mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
15 lines
No EOL
181 B
Text
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";
|
|
} |