CF

CmdFunc a.k.a Batch Script

The basics

You can run batch scripts while they are compiled and use the results.

UMS $out as CF :"echo Hello" ;

Output Type

$out(
        Stderr               -> Error value [True, false]
        ProcID               -> Process ID of Instance [int]
        Stdin                -> Your input [String]
        Stdout               -> Output of your execute [StringBuilder]
        Stopwatch            -> Time of your execute [Stopwatch]
    )

USAGE_

        $VarName!Property!

EXAMPLE_

        $out!Stdout!
        \-> Hello

        $out!Stopwatch.Elapsed!
        \-> 00:00:00.0035500

Example

UMS $out as CF :"echo Hello" ;

msg $out!Stdout!
//Coded with BH Beta 0.2.6
Output:
Hello

Last updated