Skip to content

Commit

Permalink
More 'sorting' debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Amos Wenger committed Jun 8, 2012
1 parent bb9ed43 commit bef8cd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/sample.use
@@ -1 +1 @@
Main: closure.ooc
Main: sorting.ooc
2 changes: 1 addition & 1 deletion samples/sorting.ooc
Expand Up @@ -19,6 +19,7 @@ List: class <X> {
swap: func (i, j: Int) {
tmp := get(i)
(data[i], data[j]) = (get(j), tmp)
bbtrap()
}

bbtrap: func {}
Expand All @@ -29,7 +30,6 @@ List: class <X> {
x := get(i)
f(x) print()
if (i < size - 1) ", " print()
bbtrap()
}
")" println()
}
Expand Down

0 comments on commit bef8cd3

Please sign in to comment.