This commit is contained in:
norayr 2017-04-13 18:17:26 +04:00
parent 7352dba55b
commit 2e4b60252a
2 changed files with 18 additions and 1 deletions

View file

@ -15,7 +15,7 @@ CONST
SockDccp* = 6;
SockPacket* = 10;
AfUnscec* = 0; (* Unspecified. *)
AfUnspec* = 0; (* Unspecified. *)
AfLocal* = 1; (* Local to host (pipes and file-domain). *)
AfUnix* = 1; (* POSIX name for PF_LOCAL. *)
AfFile* = 1; (* Another non-standard name for PF_LOCAL. *)

View file

@ -1,5 +1,22 @@
MODULE test;
VAR
botOwner, nick, serv, chan: ARRAY 32 OF CHAR;
PROCEDURE testBot;
BEGIN
END testBot;
BEGIN
botOwner := "norayr";
nick := "norayr";
serv := "irc.freenode.net";
chan := "#oberon";
testBot;
END test.