Skip to content

Instantly share code, notes, and snippets.

@martinos
Created August 15, 2015 17:33
Show Gist options
  • Save martinos/db0c6c190cf1888fe0b7 to your computer and use it in GitHub Desktop.
Save martinos/db0c6c190cf1888fe0b7 to your computer and use it in GitHub Desktop.
import Html exposing (..)
import String exposing (..)
type Dog a = Fido
myFunc: Dog Int -> String
myFunc myDog =
"Wouf Wouf"
main = text (myFunc (Fido))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment