An interpreted programming language written in Go.
Manage the output buffer.
To use: import 'std/opbuf'
Start output buffering. Buffering can’t be nested so start will throw if buffering is
already started.
Stop output buffering. stop will throw if buffering is already stopped.
Returns if output buffering is running.
Clear the current buffer.
Flush current buffer to stdout.
Get the contents of the buffer as a string.
Stop the current buffer and return the contents of the buffer as a string.
stopAndGet will throw if buffering is already stopped