JellyJ
The most primitive class of a regular type-class is as follows:
class JellyJ { class-scope { // Static Declarations } object-scope { // Run-Time Declarations } }
class-scope { // Static Declarations
}
object-scope { // Run-Time Declarations
And when you want to instantiate from "JellyJ":
JellyJ jellyj = JellyJ.makeInstance () ;
The method "makeInstance ()" is a default constructor which will be discussed in the Method section.
Last Updated January 27th, 2003