Believe you can

If you can dream it, you can do it.

2018-07-12から1日間の記事一覧

Elm学習 〜FizzBuzz〜

勉強がてら書いてみた module FizzBuzz exposing (..) judgment : Int -> String judgment x = if (x % 3) == 0 && (x % 5) == 0 then "FizzBuzz" else if (x % 3) == 0 then "fizz" else if (x % 5) == 0 then "buzz" else toString x > import FizzBuzz > …