Gabriel Moreira Minossi 4c11905281 Capitalizing or encapsulating global variables
Making the linter happy
2021-01-06 13:03:57 -03:00

17 lines
172 B
Lua
Executable File

-- Import section
local playTune = require('sound.play-tune')
--
local tune = {
'F#6',
'F6',
'D6',
'G#5',
'G5',
'D#6',
'G6',
'B6'
}
return playTune(tune)