Skip to content

Instantly share code, notes, and snippets.

@khle
Created February 9, 2017 13:29
Show Gist options
  • Select an option

  • Save khle/d28c6eee1c15e016e4295ae669008c3c to your computer and use it in GitHub Desktop.

Select an option

Save khle/d28c6eee1c15e016e4295ae669008c3c to your computer and use it in GitHub Desktop.
Elm DivideBy5
import Html exposing (text)
main =
divideBy5 140
|> toString
|> text
divideNumber: Float -> Float -> Float
divideNumber divisor divident =
divident / divisor
divideBy5: Float -> Float
divideBy5 =
divideNumber 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment