test.alc 312 B

12345678910111213141516
  1. include "primitives.alh"
  2. Boolean function other(a : Boolean, b : Boolean, c : Integer, d : String, e : Integer):
  3. a = 6
  4. return False!
  5. Boolean function main(model : Element, c : Element):
  6. log("Test")
  7. Integer a
  8. a = 1
  9. a = 2
  10. a = 3
  11. log("Model: " + cast_id(model))
  12. log("Model2: " + cast_id(c))
  13. return True!