This website requires JavaScript.
Explore
Help
Sign In
cli
/
q
Code
Issues
Pull Requests
Activity
11 lines
105 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Improved code generation
2024-07-05 14:31:33 +00:00
main() {
Added assertions to most tests
2024-07-28 16:47:13 +00:00
assert f(2) == 6
Improved code generation
2024-07-05 14:31:33 +00:00
}
Added types
2024-08-05 16:47:24 +00:00
f(x Int) -> Int {
Improved code generation
2024-07-05 14:31:33 +00:00
return x + 1 + g(x)
}
Added types
2024-08-05 16:47:24 +00:00
g(x Int) -> Int {
Improved code generation
2024-07-05 14:31:33 +00:00
return x + 1
}
Reference in New Issue
Copy Permalink