comparison user/console.c3 @ 315:084cccaa5deb

Added console and screen
author Windel Bouwman
date Sat, 21 Dec 2013 10:03:01 +0100
parents
children
comparison
equal deleted inserted replaced
314:38f5f298ce0e 315:084cccaa5deb
1 module console;
2
3 import ipc;
4
5
6 function void main()
7 {
8 while(true)
9 {
10 var ipc.Msg msg;
11 ipc.receive_message(&msg);
12 }
13 }
14