Created
July 21, 2015 19:59
-
-
Save A-gambit/39a80706327c39fa0a5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Text exposing (..) | |
import Color exposing (..) | |
import Graphics.Element exposing (..) | |
import Graphics.Collage exposing (..) | |
diamond: Color -> Float -> Form | |
diamond color size = | |
circle size |> filled color | |
main = | |
collage 500 500 [ diamond blue 50 ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment