12345678910111213141516 |
- include "primitives.alh"
- Boolean function other(a : Boolean, b : Boolean, c : Integer, d : String, e : Integer):
- a = 6
- return False!
- Boolean function main(model : Element, c : Element):
- log("Test")
- Integer a
- a = 1
- a = 2
- a = 3
- log("Model: " + cast_id(model))
- log("Model2: " + cast_id(c))
- return True!
|