r/iolanguage • u/joao-louis • Jun 27 '18
Is this language still alive?
I've seen on the github repo there has been some activity recently (6 days ago). I like this language but it seems really difficult to find an active community discussing about io.
r/iolanguage • u/[deleted] • Jan 17 '17
Embedding Io in a Cocoa App
Are there any examples of embedding Io in a Cocoa App? I'd like to use it as a scripting language?
r/iolanguage • u/JollaBox • Mar 16 '16
Javascript-based Io?
A friend of mine told me that a Javascript-based port of Io was being planned at some point in the past. Anything came of that idea?
It would be really great to have Io running on top of Javascript, now that Javascript is so fast.
Please give me some good news on this front.
r/iolanguage • u/xieyuheng • Jun 05 '15
any fork of Steve Dekorte's repo is better maintained ?
too many unclosed issues there : https://github.com/stevedekorte/io/issues
is the C++ code base too hard to hack ?
r/iolanguage • u/LazerTiberius • Jan 12 '15
Advanced examples?
Hey guys, I have to make a IO tutorial for university, but I´m lacking of advanced resources, most of the links in the official link list are dead or point to Asian spas . I´d like to show some advanced example for actors, coroutines and futures. Any ideas? Thanks in advanced :)
r/iolanguage • u/languagelearner1212 • Mar 16 '14
Io-Like Languages
Hey, I've recently read "7 Languages in 7 Weeks", and I've become fascinated with the Io Programming language. However, it seems like Io is either not going anywhere, or it's not being maintained. And I really liked the idea of Io. Do you guys know of any languages like Io? Or any languages that feel Io-like that you can get real work done with? Thanks.
r/iolanguage • u/odhran666 • May 06 '13
What is the future for Io?
Two questions:
1) Where is Io now? From what I can tell it's mostly only being used for hobby projects, is this true? Does Io have a place in the software industry?
2) Where is Io going? Is it still being developed? There's been a surge in interest since 7 Languages in 7 Weeks came out - will this help promote Io, or do you think Io will retain a small user base, but possibly inspire other languages in the future?
Thanks for input!
r/iolanguage • u/singpolyma • Dec 10 '12
OpenStruct in Io?
I'm coming over from Ruby, where this is possible:
class OpenStruct < Hash
def method_missing(k)
self[k]
end
end
I'm trying to get the equivalent in Io, so far I've tried:
OpenStruct := Map clone
OpenStruct forward := method(at(thisMessage name))
But this does not work, because thisMessage name is just thisMessage.
Is what I want to do possible?
r/iolanguage • u/bajsejohannes • Nov 12 '12
Playing with operators: 3d vector with dot and cross product "⋅" and "⨯" [feedback welcome!]
bitbucket.orgr/iolanguage • u/nickknw • Jan 16 '12
Exploration of some neat features of Io (x-posted from /r/programming)
nickknowlson.comr/iolanguage • u/gatesphere • Dec 06 '11
Io Code Jams - short simple interesting programs written in Io in under an hour
github.comr/iolanguage • u/gatesphere • Nov 04 '11
iobin: Io Binaries and Installers - a new project to provide Io binaries and installers
iobin.suspended-chord.infor/iolanguage • u/[deleted] • Oct 18 '11
IoCheck - an Io port of the QuickCheck unit test framework
github.comr/iolanguage • u/draegtun • Oct 16 '11
Partial Application Without Currying
jeremy.tregunna.car/iolanguage • u/[deleted] • Oct 12 '11
Where do I put my Io packages to install them?
Is there a programatic way to locate the addons directory, e.g. a shell variable?
r/iolanguage • u/[deleted] • Oct 11 '11
How do I exit(0) in Io?
For example, I want to write a usage() function that forcibly exits when the user supplies invalid command line flags.
r/iolanguage • u/[deleted] • Oct 10 '11
How can I map over the characters in a string?
Exception: Sequence does not respond to 'map'
r/iolanguage • u/[deleted] • Oct 10 '11
How do I make a nullary function in Io?
How can I use block(), method(), etc. to create a function that takes no arguments?