Skip to content

Instantly share code, notes, and snippets.

@A-gambit
Created July 21, 2015 19:59
Show Gist options
  • Save A-gambit/39a80706327c39fa0a5e to your computer and use it in GitHub Desktop.
Save A-gambit/39a80706327c39fa0a5e to your computer and use it in GitHub Desktop.
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