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