summaryrefslogtreecommitdiff
path: root/doc/2_03_def.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/2_03_def.adoc')
-rw-r--r--doc/2_03_def.adoc50
1 files changed, 50 insertions, 0 deletions
diff --git a/doc/2_03_def.adoc b/doc/2_03_def.adoc
new file mode 100644
index 00000000..bd3b87aa
--- /dev/null
+++ b/doc/2_03_def.adoc
@@ -0,0 +1,50 @@
+Def
+===
+
+The 'def' is where colm realy shines.
+A 'def' is somewhere between a struct and a regular expression.
+Again one example is much more clearer.
+
+[source,chapel]
+.assign.lm
+----
+lex start
+ token id / ('a' .. 'z' | 'A' .. 'Z' ) + /
+ token value / ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' )+ /
+ literal `= `;
+ ignore / [ \t\n] /
+end
+
+def assignment
+ [ id `= value `;]
+
+
+def assignment_list
+ [assignment assignment_list]
+| [assignment]
+| []
+
+parse Simple: assignment_list[ stdin ]
+
+for I:assignment in Simple {
+ print( I.id, "->", I.value, "\n" )
+}
+----
+
+After the compilation we can pipe some input to it's stdin.
+
+[source,bash]
+----
+/opt/colm/bin/colm assign.lm
+echo -e 'b=3;a=1;\n c=2;' |./assign
+----
+
+This gives us:
+
+----
+b->3
+a->1
+c->2
+----
+
+NOTE: this also illustrates how to read from 'stdin'.