Skip to content

Instantly share code, notes, and snippets.

@tit
Created January 20, 2020 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tit/eb0b3d0691cb315d962a1b99b4c027d8 to your computer and use it in GitHub Desktop.
Save tit/eb0b3d0691cb315d962a1b99b4c027d8 to your computer and use it in GitHub Desktop.
note generator
notes = %w[♪ .]
4.times do
3.times do
measures = []
4.times do
measures.push "#{notes.sample}.#{notes.sample} #{notes.sample}.#{notes.sample} #{notes.sample}.#{notes.sample} #{notes.sample}.#{notes.sample} | "
end
puts measures.join
end
puts
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment