Ok, just a quick entry this time. WebLinux is gradually becoming more and more like a proper Linux system, and nowhere is this more apparent than in programs written for it.
I thought I'd show it off with a simple Hello World:
#include <libc>
function main() {
printf("Hello World");
return 0;
}
Looks more like C than JavaScript doesn't it?