mirror of
https://github.com/S4mpsa/InfOS.git
synced 2025-08-03 09:56:01 -04:00
15 lines
153 B
Lua
Executable File
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)
|