Easypt

parse

..Root.parse

Parses code from string to BlockCallable object. It is used by import and -file flag.

Child of:

Root

Signatures:

NativeCallable, Callable

Example:

auto fun.=(parse("log(\"from string\");"));
fun();

Expected output:

from string