diff options
author | Araq <rumpf_a@web.de> | 2015-04-25 20:23:09 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-04-25 23:17:00 +0200 |
commit | d3fc6e1f285950d9cddb338206d553ff7baee7d5 (patch) | |
tree | 5fcbd5ff92b50e341ecfa722d2229b3327c549b2 /tests/stdlib | |
parent | 6725aa363426db74d44df29d74fca0ca6e227bbe (diff) | |
download | Nim-d3fc6e1f285950d9cddb338206d553ff7baee7d5.tar.gz |
marshalling can be done at compile-time
Diffstat (limited to 'tests/stdlib')
-rw-r--r-- | tests/stdlib/tdialogs.nim | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/stdlib/tdialogs.nim b/tests/stdlib/tdialogs.nim deleted file mode 100644 index f0203d319..000000000 --- a/tests/stdlib/tdialogs.nim +++ /dev/null @@ -1,17 +0,0 @@ -# Test the dialogs module - -import dialogs, gtk2 - -gtk2.nimrod_init() - -var x = chooseFilesToOpen(nil) -for a in items(x): - writeln(stdout, a) - -info(nil, "start with an info box") -warning(nil, "now a warning ...") -error(nil, "... and an error!") - -writeln(stdout, chooseFileToOpen(nil)) -writeln(stdout, chooseFileToSave(nil)) -writeln(stdout, chooseDir(nil)) |