From dca6e5ef421e1fcb96acd65d27c8d50fcb256c13 Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Sat, 16 Oct 2021 11:16:22 -0400 Subject: [PATCH] Destroyed Commander (markdown) --- Commander.md | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Commander.md diff --git a/Commander.md b/Commander.md deleted file mode 100644 index 62246bd..0000000 --- a/Commander.md +++ /dev/null @@ -1,16 +0,0 @@ -Commander is Hilbish's custom command library, a way to write commands with the shell in Lua. -To require: -```lua -local commander = require 'commander' -``` - -# Functions -### Commander.register(cmdname, cmdfunction) -Registers a new command named `cmdname`, which executes `cmdfunction` when ran. - -#### Example -```lua -commander.register("hello", function () - print(ansikit.text "{blue}Hello world!{reset}") -end) -``` \ No newline at end of file