3 @plugin "plugin.so" (SAbrFunctions).
5 Object : Teoria (aka Teorias) {
10 + to init named name (string) with-action action (int)
11 executed k = 1 (int) succeeded p = 1 (int):
12 ptr = TeoriaNew(name, action, k, p).
14 + to add-dato-inicial name theName (string) value theValue (float):
15 TeoriaAddDatoInicial(ptr, theName, theValue).
17 + to add-dato-final name theName (string) value theValue (float):
18 TeoriaAddDatoFinal(ptr, theName, theValue).
27 Object : SistemaAutonomo {
33 ptr = SistemaAutonomoNew().
35 + to add teoria theTeoria (object):
36 SistemaAutonomoAddTeoria(ptr, (theTeoria get-ptr)).
39 SistemaAutonomoDelete(ptr).