22importlib.reload(atlas)
25lst_simple = [Object(j=7), [5.2,
"87"]]
26obj_simple = Object(i=3, fl=-42.8, hello=
"Hello world!")
27human_class = Object(id=
"human", objtype=
"class", parents=[
"living"], description=
"Humans have two foots")
28ent = Object(id=
"12", objtype=
"object", parents=[human_class], pos=[4.5, 6.5, -1.0])
29move_op = Object(objtype=
"op", parents=[
"move"], args=[ent])
30sight_op = Object(objtype=
"op", parents=[
"sight"], from_=ent, args=[move_op])
31msg = Messages(obj_simple, human_class, ent, move_op, sight_op)