#lang racket/base (require irc/bot irc/command) ; See https://git.teknik.io/Teknikode/IBIP (define source "git.tx0.co/meep") (on (and (command-is 'PRIVMSG) (suffix-is ".bots")) (reply (format "Reporting in! [Racket] ~a" source))) (define-command (source) #:help "Display bot repo location" (reply source))