manifest() prints the manifest information of the specified class or module.
If handler is specified and is a function which takes two arguments, the function is called with the attribute key and the attribute value.
manifest("pnuts.lib")
m = map() manifest(class pnuts.lang.Pnuts, function (k, v) m.put(k, v))
versionInfo() returns a java.lang.Package object which represents the version information of the specified class or module. When a module name is specified, the initialization class is required; that is, init.class is used, not init.pnut.
This function requires JDK1.2 or better.
versionInfo("pnuts.lib")
versionInfo(class pnuts.lang.Pnuts)