fddl/examples.fddl

19 lines
278 B
Text
Raw Normal View History

2024-09-20 06:40:17 +01:00
func main() {
// print statement
print("hello, world in fddl");
// variable declaration
let y = 5;
// if statement
if (x > 10) {
print("x is greater than 10");
}
// while loop
while (x < 100) {
print(x);
let x = x + 1;
}
}