aboutsummaryrefslogtreecommitdiffstats
path: root/super-mario-theme
diff options
context:
space:
mode:
Diffstat (limited to 'super-mario-theme')
-rw-r--r--super-mario-theme10
1 files changed, 5 insertions, 5 deletions
diff --git a/super-mario-theme b/super-mario-theme
index 5a03cc9..1e59c6a 100644
--- a/super-mario-theme
+++ b/super-mario-theme
@@ -4,7 +4,7 @@
#
# play Super Mario theme
-:local beeps {
+:local Beeps {
{ 660; 100 }; 150; { 660; 100 }; 300; { 660; 100 }; 300;
{ 510; 100 }; 100; { 660; 100 }; 300; { 770; 100 }; 550;
{ 380; 100 }; 575; { 510; 100 }; 450; { 380; 100 }; 400;
@@ -58,10 +58,10 @@
{ 660; 100 }; 300; { 660; 100 }; 300; { 510; 100 }; 100;
{ 660; 100 }; 300; { 770; 100 }; 550; { 380; 100 }; 575 };
-:foreach beep in=$beeps do={
- :if ([ :len $beep ] = 2) do={
- :beep frequency=[ :pick $beep 0 ] length=([ :pick $beep 1 ] . "ms");
+:foreach Beep in=$Beeps do={
+ :if ([ :len $Beep ] = 2) do={
+ :beep frequency=[ :pick $Beep 0 ] length=([ :pick $Beep 1 ] . "ms");
} else={
- :delay ($beep . "ms");
+ :delay ($Beep . "ms");
}
}