An interpreted programming language written in Go.
Print will print all args to standard output with NO space between them. It an arg is
an object with a toString
method, that method will be called and the return value
will be printed.
Same as print() but will also output a newline after printing args.
Print arg as binary.
Same as print
but writes to stderr.
Same as println
but writes to stderr.
For debugging. Prints the current symbol table as seen by the environment where printenv() was called.
For debugging. Print the variable including all members, properties, keys, values, etc.
readline() will read a line from standard input. If a string argument is given, it will be printed before taking input. Calling readline() with more than one argument or with an argument that’s not a string, will cause the interpreter to error.
exit()
terminates script execution and returns with the error code given.
If the script is running in response to an SCGI request, the request is immediately
returned.