Skip to content

Commit 324b2b9

Browse files
committed
Fix failing return test
1 parent c0e1b77 commit 324b2b9

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ You can download the executables for Windows and Linux in the [release section](
2828
- [x] Printing
2929
- [ ] Arrays
3030
- [ ] Closures
31+
- [ ] Garbage collection
3132

3233
## Examples
3334

β€ŽTODO.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Roadmap
22

3-
- terminal IO
3+
- terminal IO (possible with external library, but need intrinsics)
44
- file IO
55
- Floats
66
- Blob type (for raw memory)

β€Žmfiles/return_in_some_cases_0.mβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# failure=true
1+
# expect_result=2
22
let f(x) = {
33
if (x == 1) {
44
ret 2;

β€Žmfiles/return_in_some_cases_1.mβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# failure=true
1+
# expect_result=void
22
let f(x) = {
33
if (x == 1) {
44
ret 2;

0 commit comments

Comments
Β (0)