Execute a system command: Difference between revisions

m
m (→‎{{header|FutureBasic}}: Add 'print' to FB 7.0.23 entry. Remove 'dim as' from open unix entry)
m (→‎{{header|Wren}}: Minor tidy)
Line 2,238:
However, if Wren is embedded in (say) a suitable Go program, then we can ask the latter to do it for us.
 
<syntaxhighlight lang="ecmascriptwren">/* run_system_commandExecute_a_system_command.wren */
class Command {
foreign static exec(name, param) // the code for this is provided by Go
Line 2,249:
which we embed in the following Go program and run it.
{{libheader|WrenGo}}
<syntaxhighlight lang="go">/* run_system_commandExecute_a_system_command.go*/
package main
 
Line 2,280:
func main() {
vm := wren.NewVM()
fileName := "run_system_commandExecute_a_system_command.wren"
methodMap := wren.MethodMap{"static exec(_,_)": execCommand}
classMap := wren.ClassMap{"Command": wren.NewClass(nil, nil, methodMap)}
9,476

edits