diff options
Diffstat (limited to 'examples/minimal2.modelica')
| -rw-r--r-- | examples/minimal2.modelica | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/minimal2.modelica b/examples/minimal2.modelica new file mode 100644 index 0000000..69790b0 --- /dev/null +++ b/examples/minimal2.modelica @@ -0,0 +1,8 @@ +model FirstOrder +  parameter Real c; +  Real x; +equation +  connect(c, x); +  1 = c; +  (5 + 4) = x; +end FirstOrder;  | 
