Skip to content

Instantly share code, notes, and snippets.

@danigb
Last active May 25, 2016 08:15
Show Gist options
  • Select an option

  • Save danigb/1403722435969220febb235b2b5f14f7 to your computer and use it in GitHub Desktop.

Select an option

Save danigb/1403722435969220febb235b2b5f14f7 to your computer and use it in GitHub Desktop.
Twelve Tone v1
module TwelveTone exposing (noteToPc)
type alias Note = Int
type alias Pc = Int
noteToPc : Note -> Pc
noteToPc note =
note % 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment