Implemented echo example

This commit is contained in:
Eduard Urbach 2024-07-18 21:10:27 +02:00
parent b34470a97d
commit 824efbf424
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
9 changed files with 70 additions and 58 deletions

View file

@ -1,7 +1,3 @@
main() {
x := 1 + f(x)
}
f(x) {
return x
}

View file

@ -1,3 +1,7 @@
main() {
x := 1 + f(x)
}
f(x) {
return x
}