loom
1import "test/examples/sbl/t/t09-ode.sbl" ("sbl") LS = {
2sigma : 10,
3b : 8/3,
4R : 28,
5
6x : 10,
7y : 1,
8z : 1,
9};
10
11print LS;
12
13//import "scene" scene = {
14// t : 0.0,
15// tk : 25.0,
16// dt : 0.01,
17// callback_period : 100,
18// callback : func [*] () { print "" + scene.t() + " " + LS.x + " " + LS.y + " " + LS.z; },
19// actors : [LS],
20//};
21
22//wait scene.add(LS);
23
24//print scene;
25
26//wait scene.start();
27