I am a newbie at Io. I have a background at php (deprecated) and python, and I loved the language sintaxe, but have a few points to comment/ask: 1) we can...
13311
Steve Dekorte
stevedekorte
Feb 17, 2013 2:53 am
... Hi Alexandre, ... There's no Smalltalk/LISP system image in Io at the moment. ... I don't know of any mature frameworks. ... ...
13312
Alexandre Andrade
alexandremasbr
Feb 17, 2013 11:13 am
Thank you for your answers. Scalable to me is in sense of erlang: can use multiple processors (parallel), or servers (clusters). How Io compares to Erlang...
13313
rokkapk
Feb 18, 2013 9:08 pm
Hello, Is it a known feature that IO-language interpreter crashes when trying to run a huge script file? eg. 20k lines? How to reproduce: 1. generate 20k lines...
13314
rokkapk
Feb 18, 2013 9:08 pm
Hello, How should I use garbage collector when embedding Io language in C/C++ program ? Is it mandatory to call some gc function to avoid running out of...
13315
Steve Dekorte
stevedekorte
Feb 18, 2013 9:17 pm
Hi Petri, ... Thanks for the bug report. My first guess is it's a stack overflow in the parser. As I'm not actively developing Io right now other than...
13316
Steve Dekorte
stevedekorte
Feb 18, 2013 9:19 pm
... The collector will automatically run as needed. Steve...
13317
suspended_chord
Mar 6, 2013 2:23 pm
Hello all, Due to lack of activity in the main Io repo since the last builds (only commits involve documentation and syntax highlighters), I've decided to...
13318
textgoeshere
Mar 6, 2013 8:43 pm
I raised a question on StackOverflow that looks like it's a bug in Io: http://stackoverflow.com/questions/15004224/using-future-throws-schedule\ ...
13319
Steve Dekorte
stevedekorte
Mar 27, 2013 12:06 am
Does this offer still stand? ;)...
13320
Friedrich Dominicus
friedrichdom...
Mar 28, 2013 1:59 pm
I tried to find out how to rename a file name and have no idea what to use. May someone give me a helping hand? Regards Friedrich...
13321
somealiassoitwillstop...
somealiassoi...
Mar 29, 2013 11:05 pm
Hi all, I have been playing around with io for a little while now. I have been trying to understand it better by expanding the example given for a basic...
13322
Wesley Teal
wt_mail
Mar 29, 2013 11:05 pm
... Friedrich, This should do the trick: inf := File with("old_name.txt") inf moveTo("new_name.txt") Wesley...
13323
Wesley Teal
wt_mail
Mar 30, 2013 6:34 pm
... Hi some, I'm really not sure what's wrong with your code, except that for some reason the slash in requestPath := "/index.html" seems to be really...
13324
somealiassoitwillstop...
somealiassoi...
Mar 31, 2013 7:33 pm
Thanks a lot. Definitely a bit of weird behaviour....
13325
giovanni.angello
giovanni.ang...
Apr 14, 2013 8:12 pm
Hi all, Just joined. I have a file in my bin directory (where I execute Io) called fibb.io. When I launch Io and hand-type the contents (one line below) on...
13326
Steve Dekorte
stevedekorte
Apr 15, 2013 9:54 pm
... if you put the text withing the ====: ==== fib := method(n, x := 0 y := 1 i := 0 while(i < n, t := x x := y y := t + y i := i + 1 ) x ) fib(3) println ====...
13327
giovanni.angello
giovanni.ang...
Apr 15, 2013 10:59 pm
Hi Steve, Thank you...I was saving the file as fibb.io.txt instead of fibb.io (Windows Explorer drops the ".txt" extension for some reason...I didn't see it...
13328
gatesphere
suspended_chord
Apr 15, 2013 11:12 pm
... Yeah, he probably meant just the stuff in between those ==== marks. ... In an Io session, do: io> doFile("fib.io") io> fib(9) println etc....
13329
giovanni.angello
giovanni.ang...
Apr 15, 2013 11:15 pm
Got it! Thanx!...
13330
giovanni.angello
giovanni.ang...
Apr 16, 2013 5:42 pm
I was hoping to find all of the pre-established routines (convenience methods(?))such as: asNum() asNan() asObject flatten reduce(+) . . etc. Is there a...
13331
Jacob Peck
suspended_chord
Apr 16, 2013 5:46 pm
Hello, You could try: Io> Object slotSummary to get a nice readout of the defined slots on Object. Also, you could check the docs:...
13332
necromarmot
Apr 16, 2013 8:15 pm
ERROR MESSAGE: ->Exception: WebRequest does not respond to 'Regex39; ->--------- -> WebRequest Regex server.io 16 -> CLI doFile...
13333
peterrro
Apr 16, 2013 8:16 pm
Hi everybody, I just discovered this beautiful language called Io. I want to write a little practical program in Io to learn it a bit more, so I'm trying to...
13334
chuchuchu747
Jun 1, 2013 6:12 pm
Hi All, when I try to access a folder with a german "umlaut" in the folder name I get an exception: Rolfs Kinderfrhling Exception: Unable to open...
13335
Jeremy Tregunna
jeremy.tregunna@...
Jun 1, 2013 6:19 pm
That sounds to me like a codepage/encoding issue. If you are using UTF-8 you should have no problem, anything else, and all bets are off. For instance; I run $...
13336
chuchuchu747
Jun 1, 2013 7:16 pm
Hi Jeremy, do you know how I can check (or change) which codepage is used by IO? In the shell self everything works fine. I can create folders with ü and ö and...
13337
Jeremy Tregunna
jeremy.tregunna@...
Jun 1, 2013 7:20 pm
No, sorry. Regards, Jeremy Tregunna ... No, sorry. Regards, Jeremy Tregunna On Saturday, 1 June, 2013 at 1:16 PM, chuchuchu747 wrote: Hi Jeremy, do you know...
13338
chuchuchu747
Jun 11, 2013 2:40 pm
Could someone please try this on windows? I think this is a problem with the windows binaries....
13339
Kevin Edwards
edwakev
Jun 13, 2013 5:41 am
I took a look and the Io .c code doesn't appear to do any codepage conversions. Io just expects UTF-8 to and from Win32 ANSI API calls, while that API expects...