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 14:57:33 +00:00
main() {
Added assertions to most tests
2024-07-28 16:47:13 +00:00
assert f(2, 3) == 25
Improved variable lifetime tracking
2024-06-29 22:17:14 +00:00
}
Added types
2024-08-05 16:47:24 +00:00
f(x Int, y Int) -> Int {
Improved variable lifetime tracking
2024-06-29 22:17:14 +00:00
return (x + y) * (x + y)
Implemented expression parsing
2024-06-16 14:57:33 +00:00
}
Reference in New Issue
Copy Permalink