test/ -> data/

This commit is contained in:
Dale Weiler 2012-04-24 13:09:17 -04:00
parent c111239467
commit 6d0b925fbb
8 changed files with 13 additions and 0 deletions

4
data/constant.qc Normal file
View file

@ -0,0 +1,4 @@
float constant_1 = 1;
string constant_2 = "hello world";
vector constant_3 = { -0, +0, 0 };
entity constant_4 = 0

1
data/include2.qc Normal file
View file

@ -0,0 +1 @@
float foo;

8
data/test.qs Normal file
View file

@ -0,0 +1,8 @@
FLOAT: f 1;
FLOAT: f 2;
FLOAT: f 3;
STRING: bar "hello world"
FUNCTION: foo
ADD_F 200.4f, 300.3, OFS_RETURN
DONE