c39b1f4bdeb720d16a149a3201709922f33dd44b
[clinton/bobotpp.git] / scripts / hello
1 (define (hello c n)
2 (if (string=? n "")
3 (bot:say c "Hello world !")
4 (bot:say c (string-append "Hello " n " !"))
5 )
6 )
7
8 (bot:addcommand "hello" hello #t 2 0)