diff options
Diffstat (limited to 'test cases/vala/13 find library/test.vala')
-rw-r--r-- | test cases/vala/13 find library/test.vala | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/vala/13 find library/test.vala b/test cases/vala/13 find library/test.vala new file mode 100644 index 0000000..b087cfb --- /dev/null +++ b/test cases/vala/13 find library/test.vala @@ -0,0 +1,6 @@ +using ZLib; + +public static int main(string[] args) { + stdout.printf("ZLIB_VERSION is: %s\n", ZLib.VERSION.STRING); + return 0; +} |