Objeck is a modern object-oriented programming language with functional features tailored for machine learning. It emphasizes expression, simplicity, portability, and scalability. The programming environment consists of a compiler, virtual machine, REPL shell, and command line debugger with IDE plugins.
Or is it a primitive type? Could you add the ->ToString() method and ->Print() and ->PrintLine() methods to array so we could print an array simply with arr->PrintLine()?
Update: On Java it needs to use Arrays.toString() method to correctly print the array to the screen, doing arr.toString() or System.out.println(arr) will print gibberish. I don't know how should we handle this on Objeck.
Or is it a primitive type? Could you add the
->ToString()
method and->Print()
and->PrintLine()
methods to array so we could print an array simply witharr->PrintLine()
?Update: On Java it needs to use
Arrays.toString()
method to correctly print the array to the screen, doingarr.toString()
orSystem.out.println(arr)
will print gibberish. I don't know how should we handle this on Objeck.