X-Git-Url: https://git.hcoop.net/clinton/bobotpp.git/blobdiff_plain/439869bf80bc560dbecfd16ce058da0932e26030..e07b6b46d151a91fc107e632cbfb63e804e58885:/scripts/hello diff --git a/scripts/hello b/scripts/hello index c39b1f4..7b0827d 100644 --- a/scripts/hello +++ b/scripts/hello @@ -1,8 +1,6 @@ (define (hello c n) - (if (string=? n "") - (bot:say c "Hello world !") - (bot:say c (string-append "Hello " n " !")) - ) -) + (if (string=? n "") + (bot:say c "Hello world !") + (bot:say c (string-append "Hello " n " !")))) (bot:addcommand "hello" hello #t 2 0)