nitrogen

An interpreted programming language written in Go.


Project maintained by nitrogen-lang Hosted on GitHub Pages — Theme by mattgraham

runtime.ni

Runtime information and utilities.

To use: import 'std/runtime'

osName: string

Name of the operating system (darwin, linux, freebsd, windows).

osArch: string

The system architecture type (amd64, 386).

dis(func: function): null

dis will print the bytecode and other compilation data for a function. fn must be a function.

dis_member(cl: class, method: string): null

dis_member will print the bytecode and other compilation data for the named method of the given class.