igouy

Results 42 comments of igouy

@JZerf > I wonder if Isaac gets tired of reviewing and rejecting binary-trees programs over and over again There's something about this that I think worth mentioning — with this...

> I'm curious, did you just install the linked files in the instructions? Yes I (not ironically) "literally" followed the instructions. > an example to loosely follow It's hello world!...

> If you look at the fannkuch-redux, it seems to be a console.log within the loop in the typescript version, which isn't in the JS version. ``` while (go) {...

@logankilpatrick @States The benchmarks game website continues to be available.

Maybe in a few months I'll take a look and ask you some more questions ;-)

PUC Lua 5 is not there. https://news.ycombinator.com/item?id=23686297 https://www.lua.org/download.html https://www.lua.org/doc/jucs05.pdf

Thanks, that allowed me to hit the next problem :-) ``` EXCEPTION error. ILLEGAL_UTF_8 0: ByteArrayBase_.to-string /core/collections.toit:1424:5 1: main mandelbrot.toit:35:35 ``` Trying to write binary, a byte rather than a...

Thanks. I discovered that the most foolish approach gives the expected output: ``` import host.pipe … byte-acc ::= ByteArray 1 out := pipe.stdout … out.write byte-acc … out.close ``` Next...

I've copied a few tiny programs line-by-line from C and Java and Python into Toit. Very much C written in Toit. Java written in Toit. Python written in Toit. The...

simple.toit is line-by-line [to match these simplistic implementations.](https://benchmarksgame-team.pages.debian.net/benchmarksgame/performance/simple.html) Takes ~53 minutes, output redirected to /dev/null. After removing the `out.write byte-acc` it takes much the same. Others [simple-programs.zip](https://github.com/toitlang/toit/files/14622292/simple-programs.zip) Command line is...