Tools
jervis.lst
Associated article: The Parasol Programming Language
Tags: C/C++ Tools
_THE PARASOL PROGRAMMING LANGUAGE_
by Bob Jervis
[LISTING ONE]
// O1 is an object with class type.
// The type of O1 is anonymous.
O1: {
hidden: int;
public:
record: (i: int) =
{
hidden = i;
}
func: (i: int) int =
{
return i * 3 + hidden;
}
};
main: entry () = {
...


