We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Here,
// Bouncing ball example v:=5; p:=10; e:=-0.5; while true do { v'=-9.8, p'=v until_0.01 p<0 /\ v<0; v:=e*v; }
I am getting a parsing error, which disappears if e*v is replaced with -0.5 * v.