Skip to content

Instantly share code, notes, and snippets.

@MasashiSalvador57f
Created October 26, 2018 11:24
Show Gist options
  • Select an option

  • Save MasashiSalvador57f/ea718173f44da28b18766d533092e25b to your computer and use it in GitHub Desktop.

Select an option

Save MasashiSalvador57f/ea718173f44da28b18766d533092e25b to your computer and use it in GitHub Desktop.
sample ont
from boa.interop.System.Runtime import Notify
def Main(operation, args):
if operation == 'Hello':
msg = args[0]
return Hello(msg)
return False
def Hello(msg):
Notify(msg)
return msg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment