source
Import murex code from another file of code block
source
imports code from another file or code block. It can be used as either an “import” / “include” directive (eg Python, Go, C, etc) or an “eval” (eg Python, Perl, etc).
Execute source from STDIN
<stdin> -> source
Execute source from a file
source: filename.mx
Execute a code block from parameter
source: { code-block }
Execute source from stdin:
» tout: block { out: "Hello, world!" } -> source
Hello, world!
Execute source from file:
» tout: block { out: "Hello, world!" } |> example.mx
» source: example.mx
Hello, world!
Execute a code block from parameter
» source { out: "Hello, world!" }
Hello, world!
source
.
args
: Command line flag parser for murex shell scriptingautocomplete
: Set definitions for tab-completion in the command lineconfig
: Query or define murex runtime settingsexec
: Runs an executablefexec
: Execute a command or function, bypassing the usual order of precedence.function
: Define a function blockmurex-parser
: Runs the murex parser against a block of codeprivate
: Define a private function blockruntime
: Returns runtime information on the internal state of murexversion
: Get murex versionThis site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Mon Feb 13 09:18:06 UTC 2023 against commit f339958f33995895c1d997efcdbb8408d2c8d45f8b5f934.
Current version is which has been verified against 13950 tests cases.