Skip to content
This repository was archived by the owner on Jan 2, 2023. It is now read-only.

Commit 747c52a

Browse files
authored
Merge pull request #2 from jakbyte/colon-to-arrow
refactor: use '->' instead of ':' for fn return type
2 parents 5e011a3 + 00fded3 commit 747c52a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/fibonacci.mun

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
fn nth(): int {
1+
fn nth() -> int {
22
3
33
}
44

5-
fn fibonacci(n:int):int {
5+
fn fibonacci(n: int) -> int {
66
if n <= 1 {
77
n
88
} else {
9-
fibonacci(n-1) + fibonacci(n-2)
9+
fibonacci(n - 1) + fibonacci(n - 2)
1010
}
1111
}

0 commit comments

Comments
 (0)