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

15 lines
153 B
Lua
Executable File

-- Import section
local playTune = require("sound.play-tune")
--
local tune = {
"E5",
"G5",
"E6",
"C6",
"D6",
"G6"
}
return playTune(tune)