How SYMMETRICA does it |
Example: The object oriented evaluation of factorial numbers using a routine of SYMMETRICA :#include"def.h" #include"macro.h" main() { OP a,b; anfang(); a= callocobject(); b= callocobject(); scan(INTEGER,a);fakul(a,b);println(b); freeall(a);freeall(b); ende(); }
How SYMMETRICA does it |