view user/console.c3 @ 410:6aa9743ed362 tip

Reflect change in c3 public modifier
author Windel Bouwman
date Mon, 23 Feb 2015 21:06:04 +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);
    }
}