]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/perl-logic.qc
add .gitignore file
[xonotic/gmqcc.git] / tests / perl-logic.qc
1 void print(...) = #1;
2
3 void main() {
4     vector va, vb;
5     string sa, sb;
6     print(__builtin_debug_typestring(va || vb), "\n");
7     print(__builtin_debug_typestring(sa || sb), "\n");
8 }