Support of the .pp extension for Pascal

This commit is contained in:
Paul Chaignon
2014-06-10 15:40:26 +02:00
parent 701e720ab8
commit 5580f39df2
7 changed files with 63958 additions and 63398 deletions

View File

@@ -0,0 +1,26 @@
class foo {
notify {
"foo": ;
}
}
class bar {
notify {
"bar": ;
}
}
node default {
stage {
"one": ;
"two": ;
}
class {
"foo": stage => "one";
"bar": stage => "two";
}
Stage["one"] -> Stage["two"]
}