perl ops -> pops

This commit is contained in:
Dale Weiler 2013-02-05 17:15:28 +00:00
parent b3e87c3280
commit 9cff2f7b8a
2 changed files with 26 additions and 0 deletions

19
tests/pops.qc Normal file
View file

@ -0,0 +1,19 @@
void main() {
/* so far only one perl operator is implemented */
float x = 100;
float y = 200;
float z = 300;
/* to ensure runtime */
x += 1;
y += 1;
z += 1;
float test_x = (x <=> x + 1); // -1 less than
float test_y = (x <=> x); // 0 equal
float test_z = (x <=> x - 1); // 1 greater than
print(ftos(test_x), "\n");
print(ftos(test_y), "\n");
print(ftos(test_z), "\n");
}

7
tests/pops.tmpl Normal file
View file

@ -0,0 +1,7 @@
I: pops.qc
D: test perl operators
T: -execute
C: -std=gmqcc
M: -1
M: 0
M: 1