--- /dev/null
+float constant_1 = 1;
+string constant_2 = "hello world";
+vector constant_3 = { -0, +0, 0 };
+entity constant_4 = 0
--- /dev/null
+/*
+ * all of these includes should work. No matter what the spacing
+ * is, we rely on it.
+ */
+#include "test/include2.qc"
--- /dev/null
+float foo;
--- /dev/null
+void test_parth() {
+ if (1) { }
+ if (2) { }
+ if (3) { }
+ if (4) { }
+ if (5) { }
+ if (6) { }
+ if (7) { }
+ if (8) { }
+}
--- /dev/null
+FLOAT: f 1;
+FLOAT: f 2;
+FLOAT: f 3;
+STRING: bar "hello world"
+
+FUNCTION: foo
+ ADD_F 200.4f, 300.3, OFS_RETURN
+ DONE
--- /dev/null
+typedef float my_float;
+typedef vector my_vector;
+typedef string my_string;
+typedef entity my_entity;
+typedef void my_void;
+
+my_float type_float;
+my_vector type_vector;
+my_string type_string;
+my_entity type_entity;
+my_void type_void;
--- /dev/null
+float typef;
+vector typev;
+string types;
+entity typee;
+void typev;
--- /dev/null
+vector vec1 = {-0 +0 0 };
+vector vec2 = {.0 .0 .0 };
+vector vec3 = {-.0 +.0 +0.1 };
+vector vec4 = {1.1 2.2 3.3 };
+vector vec5 = {2. 3. 4. };
+vector vec6 = {-2. +3. -4. };
+/*
+ * These are just comments: Ideally there is still some broken things
+ * for the vector yet. which sort of sucks.
+ */
+++ /dev/null
-/*
- * all of these includes should work. No matter what the spacing
- * is, we rely on it.
- */
-#include "test/include2.qc"
+++ /dev/null
-void test_parth() {
- if (1) { }
- if (2) { }
- if (3) { }
- if (4) { }
- if (5) { }
- if (6) { }
- if (7) { }
- if (8) { }
-}
+++ /dev/null
-typedef float my_float;
-typedef vector my_vector;
-typedef string my_string;
-typedef entity my_entity;
-typedef void my_void;
-
-my_float type_float;
-my_vector type_vector;
-my_string type_string;
-my_entity type_entity;
-my_void type_void;
+++ /dev/null
-float typef;
-vector typev;
-string types;
-entity typee;
-void typev;
+++ /dev/null
-vector vec1 = {-0 +0 0 };
-vector vec2 = {.0 .0 .0 };
-vector vec3 = {-.0 +.0 +0.1 };
-vector vec4 = {1.1 2.2 3.3 };
-vector vec5 = {2. 3. 4. };
-vector vec6 = {-2. +3. -4. };
-/*
- * These are just comments: Ideally there is still some broken things
- * for the vector yet. which sort of sucks.
- */