Io is a pure, prototype-based, object-oriented dynamic programming language.
5
votes
2answers
137 views
Io: Protocol 'https' unsupported
I am trying to fetch a file over HTTPS in Io language:
url := URL with("https://api.example.com")
url fetch println
And I get this:
Error_0x7f97e1509a80:
location = ...
0
votes
1answer
76 views
Io Language Fibonacci Problems
I'm working on an Io problem that involves the Fibonacci sequence. I'm trying to create a method that tests if a number is a Fibonacci number or not. I can't figure out why my IsAFib method isn't ...
1
vote
1answer
29 views
How do I refer to the list being mapped in Io?
Io allows an optional parameter referring to the index of a list item. How do I use that to refer to the list being mapped, for example, I could write:
testList := list(1,2,3,4)
testList map(i,v, ...
1
vote
0answers
73 views
Using Future throws `Scheduler: nothing left to resume so we are exiting`
I'm playing with Futures in Io. I have some methods that do some work:
a := method(10 + 20)
b := method(20 + 30)
c := method(30 + 40)
And I want to run them concurrently. This works as expected:
m ...
1
vote
1answer
72 views
how to pass a method but not activate it in io language
I want to implement a method dim(x,y) which will assign spaces for a matrix(y rows, x cols).
I want to make "dim(x,y)" more powerful by passing an optional function 'filler' to it and then 'dim' will ...
0
votes
0answers
26 views
How can i get a libdbi.so.1 for ubuntu(32 bit)?
I want to connect to Oracle database by IoLanguage.When I referenced an addon 'DBI',I got an exception like :
Io> DBI
Exception: Error loading object ...
2
votes
1answer
83 views
In Io language, what's the difference between 1 proto and 1 type?
Io> 1 proto == Number
==> true
Io> 1 type == Number
==> false
Io> 1 proto
==> 0
Io> 1 type
==> Number
I'm very confused about this. Does anyone have ideas about this?
3
votes
1answer
65 views
Color codes in Io
Is there a special trick to getting Io to switch the colors of terminal text? In Python I can run
print "\033[0;34;40mHi!"
and get a blue "Hi!".
In Io,
"\033[0;34;40mHi!" println
seems to ...
3
votes
1answer
122 views
Io Language Basics
I am working on a project on the Io language. There is very little documentation on the language. I was hoping that some of you would have input on the following:
Single Dispatch
Multiple ...
0
votes
2answers
37 views
Io(language) startup error - .io_history
I installed and was running the Io(language) command line interface fine in OSX but now I'm getting this error on startup:
Exception: while loading history file '/Users/andrew/.io_history', reason: ...
2
votes
1answer
128 views
Embedding Io language: Call Io method from C
I'm writing a game engine and I'd like to use Io for scripting. The engine is written in pure C99, not C++. I've successfully bound Io to some of the game's C functions, and it works well.
However, ...
2
votes
1answer
57 views
How can I enter multiline methods in the interactive Io interpreter?
I am trying the following sample from 7 Languages in 7 Weeks:
Object ancestors := method(
prototype := self proto
if(prototype != Object,
writeln("Slots of ", prototype type, ...
1
vote
1answer
67 views
Implemented a linked list. Need help creating a stack and a queue
I have already got a working linked list here:
Single_Linked_List := Object clone do(
head ::= nil;
// constructor
init := method(
head = nil
);
// methods
isEmpty := method(
...
3
votes
1answer
64 views
Io: How to instantiate a subclassed primitive (e.g. Number)?
In the book 7 Languages in 7 Weeks there is a question:
How would you change / to return 0 if the denominator is zero?
Thanks to the thread What's the significance of self inside of a ...
1
vote
2answers
96 views
Why does the Io REPL and the interpreter give me two different values?
Consider this code:
OperatorTable addOperator(":", 2)
: := method(value,
list(self, value)
)
hash := "key": "value"
hash println
The return should be list(key, value), and when using this in ...
0
votes
2answers
71 views
io Assignment Operator not evaluating?
OperatorTable addAssignOperator(":", "myAssignMethod")
"foo" : "bar"
That gives an error that a Sequence does not respond to ":" (":" is still being treated as a message, not an operator).
I think ...
1
vote
1answer
70 views
Test that an expected Exception was thrown in Io
Is there an idiomatic way, that does not duplicate code and checks that an exception was thrown in Io when unit-testing?
So far:
threw := false
e := try(_method that should throw_)
e ...
1
vote
1answer
113 views
Io string (Sequence) manipulation/formatting?
Does Io have built in methods that mirror the ord() and chr() functions in other languages (namely being able to take an integer and return the ASCII character associated with it, or take a string ...
1
vote
1answer
76 views
method to treat string as Object name in IO?
In Io, there is a getSlot() method which allows you to convert a string to a slot reference, but is there something similar to get a reference to an Object? For example:
myObject := Object clone
...
3
votes
2answers
133 views
What's the significance of self inside of a method?
I'm reading through Seven Programming Languages in Seven Weeks, and one of the problems states:
How would you change / to return 0 if the denominator is zero?
I first tried defining my own / and ...
0
votes
1answer
32 views
How do I apply a dynamic list of arguments to a block in Io?
I'm writing a unit test framework (IoCheck). There will be a forAll method which accepts a property, such as isEven, which returns whether an integer is even, and a list of generators list(genInt).
...
2
votes
1answer
208 views
Random value bug in Io
I'm writing a unit test framework that will supply random integers, booleans, characters, and strings to test functions.
Github repo: IoCheck. Code in question:
genChar := method(
Random ...
3
votes
1answer
135 views
Errors while installing IO (language)
I am trying to install IO on a macbook pro but am stuck at the following:
Linking CXX shared library _build/dll/libIoObjcBridge.dylib ld:
library not found for -lIoSocket collect2: ld returned 1 ...
2
votes
1answer
475 views
Io Language fails to build: Foundation/Foundation.h: No such file or directory
I'm trying to build that Io language from source on Ubuntu 10.10 and not having a great deal of success.
I cloned the repo, I navigated to the build/ directory, I executed "cmake ..", it seemed to go ...
3
votes
1answer
191 views
Io framework to get starting learning Io (programming language)
Does anyone know of a MVC framework or whatever framework is a good one to get started using Io (the programming language).
2
votes
1answer
142 views
Problems with Io Addons under Cygwin
Has anybody managed to use Io addons like Regex or OpenGL under Cygwin on Windows 7 32 bit?
Notes:
If it happen to be an ASLR issue, I want to keep ASLR enabled, so I did not test with it turned ...
2
votes
1answer
241 views
Error compiling the io programming language
I'm trying to compile io but it's failing and I can't understand why. Here's what I did to compile it:
mkdir build && cd build
cmake ..
make
Here's a gist of output from cmake
Which seems ...
14
votes
1answer
689 views
Whats the difference between newSlot and setSlot in the Io Language?
In the Io Language, there are 2 methods for creating slots: newSlot and setSlot. Both seem to have similar behavior except newSlot also creates a setter. What cases are there for a needing a setter to ...
3
votes
1answer
328 views
How do I deserialize objects in Io?
I've found the serialized and justSerialized methods on Object and already successfully serialized objects to files, but I cannot find a matching deserialize method.
Is there none or am I just too ...
4
votes
2answers
595 views
Io language 'apply arguments'
In the Io programming language, is there an equivalent to lisp's apply function.
So for example I have a method to wrap writeln :
mymeth := method(
//do some extra stuff
...
4
votes
1answer
252 views
Io operators, cant seem to create them in a file
I've being experimenting with operators in the Io language. Everything works fine in the cli, but as soon as I put my code in files instead, I run into problems.
Here's a tiny example (creating an ...
21
votes
3answers
738 views
How do you replace existing operators without invoking them in Io?
I’m trying to complete the second exercise on IO day 2 in the book Seven Languages in Seven Days. In it your asked, “How would you change / to return 0 if the denominator is zero?” I've determined ...
5
votes
3answers
420 views
How do I convert a string to a list in Io?
For example, I'd like to turn "hello" into list(104, 101, 108, 108, 111) or list("h", "e", "l", "l", "o")
So far I've created an empty list, used foreach and appended every item to the list myself, ...
6
votes
2answers
418 views
How does Io language detect deadlock automatic?
I read that Io language has Futures which can detect deadlock automatic. I know nothing about it and have seen some syntax. How does Io language detect deadlocks with this?
6
votes
1answer
197 views
What does 'semicolon' mean as a unit of size
On the Io home page it mentions its small size, but it uses a unit of measure I've not seen before:
small vm (~10K semicolons)
Is this just the size in characters (~bytes), or is there something ...
5
votes
1answer
609 views
How do I import an addon in the Io language?
Specifically, I'm trying to use the Random addon. The documentation states addons should be loaded upon first use, which is also supported by Hyperpolyglot However, I get (running one of the sample ...
7
votes
1answer
659 views
How do I define my own operators in the Io programming language?
I'm trying to define my own operator in Io, and I'm having a hard time. I have an object:
MyObject := Object clone do(
lst := list()
!! := method(n, lst at(n))
)
But when I call it, like this:
...
13
votes
2answers
2k views
Are there any applications written in the Io programming language? (Or, distributing Io applications.)
I've recently become interested in prototype-based OOP, and I've been playing with Io and Ioke. Distributing an application with Ioke is simple. It's on the JVM. Need I say more? However, I'm ...
7
votes
5answers
1k views
Does anyone know of a GUI library for the Io language
Io is a nice cross-platform prototype-based object-oriented language.
Does anyone know of any GUI library for Io?
Io's name does not make it Google friendly.