Created
June 24, 2015 12:54
-
-
Save yuanotes/b5db67421160b08d6398 to your computer and use it in GitHub Desktop.
Nim with IUP
This file contains 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 iup import nil | |
from os import nil | |
when isMainModule: | |
discard iup.open(nil, nil) | |
iup.show(iup.dialog(iup.label("Hello, world!"))) | |
iup.mainLoop() | |
iup.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment