diff options
Diffstat (limited to 'tests/projects/vala/sharedlib/src/main.vala')
| -rw-r--r-- | tests/projects/vala/sharedlib/src/main.vala | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/projects/vala/sharedlib/src/main.vala b/tests/projects/vala/sharedlib/src/main.vala new file mode 100644 index 000000000..da9fd895e --- /dev/null +++ b/tests/projects/vala/sharedlib/src/main.vala @@ -0,0 +1,6 @@ +using MyMath; + +public void main() { + stdout.printf("\n\t2 + 3 is %d", sum(2, 3)); + stdout.printf("\n\t8 squared is %d\n", square(8)); +} |
