diff tests/parser/assign_1.d @ 126:c3b24e7e8cf8

Carius changes to the parser. Parsing attributes, lexing many keywords(not all yet).
author Anders Johnsen <skabet@gmail.com>
date Tue, 27 May 2008 10:32:31 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/parser/assign_1.d	Tue May 27 10:32:31 2008 +0200
@@ -0,0 +1,13 @@
+
+
+int main()
+{
+    int x = 0;
+    x  = 2;
+    x += 5;
+    return x;
+/*    x -= 2;
+    x *= 3;
+    x /= 4;
+    x %= 3; */
+}