view user/console.c3 @ 321:8c569fbe60e4

Load yacc and burg dynamic
author Windel Bouwman
date Sun, 19 Jan 2014 18:48:45 +0100
parents 084cccaa5deb
children
line wrap: on
line source

module console;

import ipc;


function void main()
{
    while(true)
    {
        var ipc.Msg msg;
        ipc.receive_message(&msg);
    }
}