Skip to content

Commit

Permalink
Merge pull request #192 from RadicalZephyr/broken-example
Browse files Browse the repository at this point in the history
fix: remove return-blocking semicolon from ch01 listing 01
  • Loading branch information
baszalmstra authored May 16, 2020
2 parents dc11b89 + 1bf2b67 commit 804ab35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/listings/ch01-getting-started/listing01.mun
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pub fn fibonacci_n() -> i64 {
let n = arg();
fibonacci(n);
fibonacci(n)
}

fn arg() -> i64 {
Expand Down

0 comments on commit 804ab35

Please sign in to comment.