From 5c5adbc109b4724b2e6fabe531da0b54c588de3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Fri, 17 Nov 2017 17:24:04 +0100 Subject: [PATCH] Add help info for channel joining and leaving. --- demo/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/demo/main.c b/demo/main.c index a0d3e8e..a573eab 100644 --- a/demo/main.c +++ b/demo/main.c @@ -22,6 +22,8 @@ void print_help() { puts("Use `/' at the beginning to indicate a command (like in IRC)."); + puts(" join -- Join a channel (channel names start with `#')."); + puts(" leave -- Leave a channel (channel names start with `#')."); puts(" stats -- Give network statistics of the local node."); puts(" exit | quit -- Close the program."); puts(" help -- Show this help information.");