This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let config = | |
{ host : "irc.ubuntu.com"; | |
port : 6697; | |
nickname : "guest"; | |
} | |
let flip fn x y = fn y x | |
let start (config: Config.t) = | |
Printf.printf "Trying to connect to %s:%d\n" config.host config.port; |