Created
October 26, 2018 11:24
-
-
Save MasashiSalvador57f/ea718173f44da28b18766d533092e25b to your computer and use it in GitHub Desktop.
sample ont
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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