Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

iolanguage · Io

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
  Newest  |  < Newer  |  Older >  |  Oldest
Topics Messages Latest Post

I am new to this language, and I love it. I made first contact a couple of months ago with the book 7 langs in 7 weeks. But I have been really struggling...
4 May 4, 2012
10:23 pm

Steve Dekorte
stevedekorte
Send Email

Hello all, Just posting to announce that I've updated the win32 binary package to fix a directory structure issue I had in the previous release, leading to...
1 May 2, 2012
2:48 pm

suspended_chord
Send Email

I've been playing around with writing a simple mud in Ruby/Revactor, and now bringing it to Io. For the most part it's straightforward, but reloading Io files...
8 Apr 28, 2012
11:26 pm

Steve Dekorte
stevedekorte
Send Email

After reading Bruce A. Tate's 7 languages book, I wondered whether it would be possible to configure IO to support the basic dependency syntax of Unix make....
5 Apr 28, 2012
7:49 am

Steve Dekorte
stevedekorte
Send Email

I hit a snag in my script refactoring. I'm trying to wrap all my proto creations inside methods so that I can pass dependencies as arguments, but I can't...
6 Apr 16, 2012
5:57 pm

Steve Dekorte
stevedekorte
Send Email

In my game engine I now have over 64 Io scripts and probably 100 protos. I reference many 3rd-party libraries, and I want to know what scripts are importing...
1 Apr 8, 2012
7:09 pm

dennisf486
Send Email

Can't find it! Anyway know where it got to? and who's Quag? :) -- Duke...
1 Mar 8, 2012
1:33 am

Duke Normandin
cgnormandin
Send Email

Hello all, Just thought I'd let you know that I'm updating the binary builds of Io this weekend, to reflect the last 4 months of development on mainline Io. ...
7 Mar 7, 2012
4:42 pm

gatesphere
suspended_chord
Send Email

Hello, I am trying to use Io under Ubuntu 10.04 and have a strange behaviour: % cat operator.io OperatorTable addOperator (":",1) Object : := method (a, self...
4 Mar 3, 2012
9:34 pm

Jeremy Tregunna
jeremy.tregunna@...
Send Email

io Io 20110905 Io> Account := Object clone do( ... balance := 0.0 ... deposit := method(v, balance = balance + v) ... withdraw := method(v, balance = balance...
12 Feb 26, 2012
10:18 pm

Duke Normandin
cgnormandin
Send Email

having a hell of a time with addons!! This site: http://jetpackweb.com/blog/2011/02/08/io-language-addons-and-making-them-work-in-ubuntu/ explained that a...
26 Feb 21, 2012
3:07 pm

gatesphere
suspended_chord
Send Email

Is it?? and how would I un-install Io? make uninstall ?? -- Duke...
7 Feb 20, 2012
1:25 pm

Duke Normandin
cgnormandin
Send Email

I'm still trying this (from IoGuide.html) whois := method(host, socket := Socket clone setHost("rs.internic.net") setPort(43) socket connect streamWrite(host,...
3 Feb 19, 2012
8:03 pm

Duke Normandin
cgnormandin
Send Email

In http://www.iolanguage.com/scm/io/docs/IoGuide.html#Primitives-Networking it says: [quote] Note that you'll need to first reference the associated addon in ...
3 Feb 18, 2012
3:57 pm

Duke Normandin
cgnormandin
Send Email

Hi guys I installed io with "brew install io". Unfortunately if I call Regex I have this error: Exception: Error loading object ...
1 Feb 17, 2012
12:07 am

Andrea Franz
guragedance
Send Email

hello list ... I'm just a programming hobbyist wanting to learn a new language. I've messed with Self on my wife's OS X machine, but found it a bit...
1 Feb 13, 2012
8:36 pm

cgnormandin
Send Email

I'm ]reading 3 in book "Seven Languages in Seven Weeks". Thnak you....
3 Feb 6, 2012
3:37 am

gatesphere
suspended_chord
Send Email

I wanted to give everyone a short heads up. This weekend, I'm planning on retiring the Range C addon forever (at least in terms of my maintenance). Handling...
1 Feb 3, 2012
9:44 pm

Jeremy Tregunna
jeremy.tregunna@...
Send Email

... Linking C shared library _build\dll&#92;libIoRandom.dll Creating library file: _build\dll&#92;libIoRandom.dll.a CMakeFiles&#92;IoRandom.dir/objects.a(IoRandom.c.obj):...
5 Jan 20, 2012
10:59 pm

Steve Dekorte
stevedekorte
Send Email

Error while compiling was: IoThread.c:24:15: error: ‘IoTag_newWithName_protoId’ undeclared It was caused by a missing open parantheses (. Signed-off-by:...
2 Jan 18, 2012
1:28 am

Steve Dekorte
stevedekorte
Send Email

Error while compiling was: IoThread.c:24:15: error: ‘IoTag_newWithName_protoId’ undeclared It was caused by a missing open parantheses (. Signed-off-by:...
1 Jan 17, 2012
9:07 pm

Alexander Kluth
hartmut@...
Send Email

Hi everyone, I am reading Bruce Tate book on 7 languages in 7 weeks, and I came upon IO. So far this is quite a fun language. But there is one thing that...
1 Jan 15, 2012
7:59 pm

Darius Damalakas
darius.damalakas@...
Send Email

If you're a VIM user, here is another Io syntax file for your editing enjoyment. http://static.eradman.com/code/io.vim Feel free to adapt to your own needs. ...
1 Dec 22, 2011
2:12 am

Eric Radman
eric.radman
Send Email

I want to propose a change in direction for the standard library foreach(), select(), and friends methods. I'll supply code, don't worry about that. Right now,...
15 Dec 21, 2011
3:22 pm

Jeremy Tregunna
jeremy.tregunna@...
Send Email

Hi, I started writing a DBus client library (you can find it on github). This is also my first project in Io, so I need to grasp a few things first. I just...
6 Dec 9, 2011
6:12 pm

Steve Dekorte
stevedekorte
Send Email

Hi, I have a string in the forme given by String asHex. That is a collection of bytes, encoded using two hexadecimal characters, all concatenated together. i'm...
3 Dec 9, 2011
8:45 am

Mildred Ki'Lya
mildred593@...
Send Email

Hi, The unix socket implementation is here: addons/Socket/source/IoUnixPath.c<https://github.com/stevedekorte/io/blob/master/addons/Socket/source/IoUnixPath.c>...
3 Dec 8, 2011
6:34 pm

Steve Dekorte
stevedekorte
Send Email

Hi, I'd like to start using dBus with Io to get started with a real application. But, there is no dBus binding. I thought I would re-implement dBus in pure Io....
6 Dec 8, 2011
8:32 am

Steve Dekorte
stevedekorte
Send Email

I am looking for boolean operations in Io. I need to write something like this: if (a == b) or (c == d) .... Now I have created such code: divided_by :=...
3 Dec 1, 2011
9:35 pm

Jeremy Tregunna
jeremy.tregunna@...
Send Email

If Io will compile with llvm-gcc, then you can use emscripten https://github.com/kripken/emscripten/wiki To compile a javascript version. I haven't tried Io,...
2 Nov 29, 2011
11:01 pm

Steve Dekorte
stevedekorte
Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help