# @runtime

The @runtime module provides information about the ABS runtime that is currently executing the script.

# API

runtime = require('@runtime')

# @runtime.version

Returns the version of the ABS interpreter:

runtime.version # "x.y.z" eg. 1.0.0

# @runtime.name

Returns the name of the runtime:

runtime.name # "abs"

# @runtime.interactive

Returns whether abs is running in interactive mode (eg. repl):

runtime.interactive # "true"