aboutsummaryrefslogtreecommitdiffstats
path: root/modelica-parser-lalrpop/examples/minimal2.modelica
blob: 69790b0920d6052c0b63dbe2e7e5acf362317cf7 (plain)
1
2
3
4
5
6
7
8
model FirstOrder
  parameter Real c;
  Real x;
equation
  connect(c, x);
  1 = c;
  (5 + 4) = x;
end FirstOrder;