Skip to end of banner
Go to start of banner

runSILInline

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Current »

Description

Executes the script with the given arguments.

Parameters

Return Type

String[]

Example

string [] result = runSILInline("return \"SIL is \" + argv[0];", "awesome"); // returns "SIL is awesome"

string script = "number sum = 0; for (string s in argv) { sum += (number)s; } return sum;"; 
string [] argsArr = "1|2|3";
string [] result = runSILInline(script, argsArr); // returns "6"

  1. If you don't need/have any arguments, pass an empty string for the args parameter.
  2. You need to perform all the necessary escapes.

See also

Filter by label

There are no items with the selected labels at this time.

  • No labels