Last active
May 25, 2016 08:15
-
-
Save danigb/1403722435969220febb235b2b5f14f7 to your computer and use it in GitHub Desktop.
Twelve Tone v1
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
| 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