From 041819f7b16876ddc1d66f76f1bd904e376b3e18 Mon Sep 17 00:00:00 2001 From: MuramasaM <107993352+MuramasaM@users.noreply.github.com> Date: Mon, 4 Jul 2022 14:42:09 -0700 Subject: [PATCH] Delete 18 --- public/game/18 | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 public/game/18 diff --git a/public/game/18 b/public/game/18 deleted file mode 100644 index 65f2fc1..0000000 --- a/public/game/18 +++ /dev/null @@ -1,24 +0,0 @@ -%18% -local t = {} - -t.Foo = - function() - print("foo") - end - -t.Bar = - function() - print("bar") - end - -t.Help = - function(funcNameOrFunc) - --input argument can be a string or a function. Should return a description (of arguments and expected side effects) - if funcNameOrFunc == "Foo" or funcNameOrFunc == t.Foo then - return "Function Foo. Arguments: None. Side effect: prints foo" - elseif funcNameOrFunc == "Bar" or funcNameOrFunc == t.Bar then - return "Function Bar. Arguments: None. Side effect: prints bar" - end - end - -return t \ No newline at end of file