This website requires JavaScript.
Explore
Help
Sign In
cli
/
q
Code
Issues
Pull Requests
Activity
7 lines
86 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Implemented expression parsing
2024-06-16 16:57:33 +02:00
main() {
Added assertions to most tests
2024-07-28 18:47:13 +02:00
assert f(2, 3) == 25
Improved variable lifetime tracking
2024-06-30 00:17:14 +02:00
}
Added types
2024-08-05 18:47:24 +02:00
f(x Int, y Int) -> Int {
Improved variable lifetime tracking
2024-06-30 00:17:14 +02:00
return (x + y) * (x + y)
Implemented expression parsing
2024-06-16 16:57:33 +02:00
}
Reference in New Issue
Copy Permalink