Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. get_qs_list n = get_qs_list_help n 0
  2. get_qs_list_help n i
  3. | i == n = []
  4. | otherwise = get_note (sortList !! i) : get_qs_list_help n (i + 1)
  5.  
  6. play_qs_list = playDev helm_output_id (tempo 3 (line (get_qs_list (length sortList))))
  7.  
  8. sortList = [9, 9, 9, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6, 8, 7, 7, 7, 8, 7, 7, 8, 8, 5, 8, 5, 8, 5, 5, 7, 7, 7, 5, 7, 8, 7, 5, 5, 8, 8, 7, 7, 7, 7, 7, 7, 5, 5, 6, 5, 6, 5, 6, 6, 5, 6, 6, 5, 6, 7, 7, 7, 9, 7, 7, 6, 7, 7, 5, 5, 5, 6, 6, 7, 7, 6, 7, 6, 7, 7, 6, 5, 7, 4, 1, 0, 0, 0, 1, 2, 4, 1, 0, 2, 1, 1, 2, 4, 4, 4, 0, 0, 2, 1, 0, 1, 2, 2, 4, 2, 0, 1, 1, 0, 1, 0, 4, 5, 4, 0, 1, 0, 2, 0, 8, 2, 6, 8, 2, 2, 3, 2, 1, 6, 1, 0, 4, 3, 1, 0, 6, 4, 8, 1, 6, 9, 7, 6, 4, 8, 0, 8, 0, 0, 3, 2, 6, 4, 2, 3, 1, 6, 7, 8, 6, 6, 1, 4, 8, 3, 0, 8, 1, 0, 3, 2, 1, 7, 8, 2, 1, 2, 4, 7, 1, 6, 2, 2, 0, 4, 4, 4, 8, 7, 8, 4, 2, 8, 7, 0, 2, 2, 0, 0, 6, 6, 8, 8, 6, 2, 2, 0, 4, 4, 4, 2, 6, 7, 5, 0, 2, 2, 0, 0, 6, 7, 6, 3, 2, 3, 3, 7, 8, 0, 8, 4, 4, 1, 4, 2, 7, 5, 8, 0, 7, 1, 5, 3, 5, 8, 3, 1, 0, 2, 0, 1, 0, 6, 6, 2, 8, 7, 6, 0, 3, 5, 2, 6, 1, 4, 3, 4, 8, 2, 0, 4, 8, 4, 3, 6, 7, 6, 4, 8, 5, 3, 6, 0, 2, 0, 3, 0, 1, 6, 1, 8, 1, 6, 0, 8, 4, 2, 6, 1, 6, 8, 2, 8, 8, 0, 8, 1, 6, 0, 3, 0, 0, 8, 7, 8, 0, 3, 5, 1, 8, 8, 3, 4, 1, 5, 0, 8, 7, 0, 6, 8, 7, 6, 8, 8, 4, 2, 2, 2, 8, 7, 8, 8, 3, 8, 1, 8, 0, 6, 4, 2, 8, 4, 7, 5, 7, 2, 8, 0, 6, 2, 2, 2, 0, 6, 1, 2, 8, 5, 5, 2, 2, 2, 7, 0, 3, 5, 8, 8, 4, 7, 5, 7]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement