simple_client.alc 229 B

12345678910111213
  1. include "primitives.alh"
  2. include "services.alh"
  3. Boolean function main(param : Element):
  4. String port
  5. port = comm_connect("fibonacci")
  6. comm_set(port, 1)
  7. Integer result
  8. result = comm_get(port)
  9. comm_close(port)
  10. return True!