Skip to content

Commit

Permalink
chore(example): fix hanoi example
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS authored Nov 5, 2023
1 parent ecd5570 commit 8df4f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/hanoi.ri
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

import std/console;

const num := 7;
const NUM := 7;

func main() {
hanoi(num, "A", "B", "C");
hanoi(NUM, "A", "B", "C");
}

func move(n: int32, a: string, b: string) {
Expand Down

0 comments on commit 8df4f38

Please sign in to comment.