Fixed elm-format

This commit is contained in:
Morten Nygaard Åsnes 2017-10-08 11:30:04 +02:00
parent 6b76c9b1d5
commit f40f8a1ac0
2 changed files with 2 additions and 1 deletions

View file

@ -1 +1,2 @@
module CollatzConjecture exposing (..)

View file

@ -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