haXe Forum > write to stdout

  • how do you write to stdout for a debug log?

  • neko: neko.Lib.print("foo") or neko.Lib.println("foo")
    cpp: cpp.Lib.print("foo") or cpp.Lib.println("foo")

    you can also access stdout by

    neko.File.stdout()
    cpp.File.stdout()

< Prev | Page 1 / 1 | Next >