diff --git a/examples/bubblesort.sb b/examples/bubblesort.sb index 698f96a..f800bf9 100644 --- a/examples/bubblesort.sb +++ b/examples/bubblesort.sb @@ -1,5 +1,3 @@ -// Doesn't compile yet - fn main() { let arr = [2, 5, 3, 1, 4] let n = len(arr) @@ -22,4 +20,5 @@ fn main() { c = c + 1 } -} \ No newline at end of file + println(arr) +}