Files
mgmt/examples/lang/sendrecv1.mcl
James Shubin 6370f0cb95 lang: Add edges to lexer and parser
This adds some initial syntax for external edges to the language.

There are still improvements which are necessary for send/recv.
2018-02-25 19:29:27 -05:00

15 lines
204 B
Plaintext

file "/tmp/mgmt/foo" {
content => "hello from foo\n",
}
print "print0" {
}
File["/tmp/mgmt/foo"].content -> Print["print0"].msg
print "print1" {
msg => "hello",
}
Print["print0"] -> Print["print1"]