Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 1.37 KB

README.md

File metadata and controls

35 lines (30 loc) · 1.37 KB

rebol-irc

Rebol-IRC CI Gitter Zulip

Rebol/IRC

Rebol IRC scheme for Rebol3.

Basic usage example

This is minimal code, which does not handles reconnection and has almost no command handlers.

import %irc.reb
port: make port! [
    scheme:  'irc
    user:    "MyReBot"
    real:    "My Full Name"
    host:    "irc.libera.chat"
    commands: make map! reduce/no-set [
        PRIVMSG: func[ircp cmd][ print ["PRIVMSG:" mold cmd] ]
        001      func[ircp cmd][ print "You are connected now!" ]
    ]
]
open port                     ;; Initialize the connection
forever [
    res: wait [port 30]       ;; Wakeup after every 30 seconds
    unless open? port [break] ;; Connection was lost, so exit the loop
    unless res [
        write port 'PING      ;; Send PING to server
    ]
]

For more complex example see: irc-test.r3