(define (hello c n)
        (if (string=? n "")
            (bot:say c "Hello world !")
            (bot:say c (string-append "Hello " n " !"))
        )
)

(bot:addcommand "hello" hello #t 2 0)
