diff options
Diffstat (limited to 'meson/test cases/vala/13 find library/test.vala')
-rw-r--r-- | meson/test cases/vala/13 find library/test.vala | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson/test cases/vala/13 find library/test.vala b/meson/test cases/vala/13 find library/test.vala new file mode 100644 index 000000000..b087cfb6d --- /dev/null +++ b/meson/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; +} |