[project @ 2002-07-15 21:01:51 by unknown_lamer]
[clinton/bobotpp.git] / scripts / hello
index c39b1f4..7b0827d 100644 (file)
@@ -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)