]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/perl-logic.qc
now a bare 'return;' is not required anymore if return has been assigned anywhere
[xonotic/gmqcc.git] / tests / perl-logic.qc
1 void main() {
2     vector va, vb;
3     string sa, sb;
4     print(__builtin_debug_typestring(va || vb), "\n");
5     print(__builtin_debug_typestring(sa || sb), "\n");
6 }