Skip to content

Instantly share code, notes, and snippets.

@stpettersens
Created October 16, 2010 22:42
Show Gist options
  • Save stpettersens/630359 to your computer and use it in GitHub Desktop.
Save stpettersens/630359 to your computer and use it in GitHub Desktop.
Fantom snippet for running Gaudi process
class GaudiUILogic {
Void invokeGaudi(Str params) {
Process gaudi := sys::Process()
gaudi.command = ["gaudi", params]
gaudi.run()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment