If you're still following this thread, amasad and max99x, I have a simple question: how many hours did you two put into this?
Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
71–80 of 81 posts
Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#72Ouch! Awesome apps like this are totally humbling. Congratulations, guys. If you're still following this thread, amasad and max99x, I have a simple question: how many hours did you two put into this?
Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#73I wonder whether Haskell is on their todo list. GHC's LLVM backend [1] might be helpful. [1] http://hackage.haskell.org/trac/ghc/wiki/Commentary/Compiler...
Haskell won't run in a repl, will it? GHCi and Hugs demand that functions be specified in a script file and not at the prompt. Without functions, you really don't have very much of the Haskell language available. It's a partial repl with a fraction of the language at best.
$ ghci
Prelude> let fact x = if x == 0 then 1 else x * fact (x - 1)
Prelude> fact 6
720Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#74Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#75Lua and Scheme work fine. Also, good job on allowing me to close the tab after I managed to get QBasic locked in an infinite loop. :-) (Dual-core likely helped.)
Firefox 7.0, x86 (32-bit), running on Ubuntu 11.04, x86-64.
Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#76Every time I try Python or Ruby, the interpreter loads almost fully and then freezes. Lua and Scheme work fine. Also, good job on allowing me to close the tab after I managed to get QBasic locked in an infinite loop. :-) (Dual-core likely helped.) Firefox 7.0, x86 (32-bit), running on Ubuntu 11.04, x86-64.
And ya, we try to sandbox most of our languages inside a Web Worker, which leaves the main thread intact incase of infinite loops and such.
Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#77Ouch! Awesome apps like this are totally humbling. Congratulations, guys. If you're still following this thread, amasad and max99x, I have a simple question: how many hours did you two put into this?
Really hard to say. We started experimenting with the idea back in March, but didn't start putting fulltime nights into it until August. I'd say a little over a thousand man-hours over the span of 6 months, but I may be well off the mark.
Anyways, the real question is "how much did it cost?": $1600+ in sushi dinners! :)
Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#78Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#79 SCREEN 13
CIRCLE (4, 3), 4, 4
and all the other stuff I used to have fun with years ago will actually work.Re: Try Python, Ruby, Lua, Scheme, QBasic, Forth ...
#80the QBasic support actually makes me want to try to add Canvas support to it so that SCREEN 13 CIRCLE (4, 3), 4, 4 and all the other stuff I used to have fun with years ago will actually work.