From ab95ecaa43f545750c5b0f6c516dbc1559cc148b Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Mon, 14 Dec 2020 20:06:41 +0100 Subject: [PATCH] Fix bubblesort example --- examples/bubblesort.sb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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) +}