C - 0.02
C - a pseudo-interpreter of the C programming language has now been updated to version 0.02.
To install, cp C-0_02 /usr/bin/C && chmod 755 /usr/bin/C.
Following features have been added:
-m option:
Support for source codes with the main function. Source files downloaded from the Internet can directly be executed.
% C -m uuencode.c.txt ...
debugger support:
By using the -d option, gdb can be used for debugging.
man page
To install the man page, pod2man --section=1 --center="Cybozu Labs" --release="C-0.02" /usr/bin/C > /usr/share/man/man1/C.1
#option directive
Compile options can be specified from within source files by using the #option directive.
For example, #option -cWall is equivalent to gcc -Wall, or to use strict; of perl.
Have fun.