mirror of
https://github.com/correl/elm.git
synced 2024-12-22 11:09:08 +00:00
Fixed elm-format
This commit is contained in:
parent
6b76c9b1d5
commit
f40f8a1ac0
2 changed files with 2 additions and 1 deletions
|
@ -1 +1,2 @@
|
|||
module CollatzConjecture exposing (..)
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ collatz start =
|
|||
Ok (collatzHelper 0 start)
|
||||
|
||||
|
||||
collatzHelper : Int -> Int -> Int
|
||||
collatzHelper : Int -> Int -> Int
|
||||
collatzHelper steps start =
|
||||
if start == 1 then
|
||||
steps
|
||||
|
|
Loading…
Reference in a new issue