Click here to Skip to main content
15,886,071 members

Comments by Member 14641430 (Top 3 by date)

Member 14641430 1-Nov-19 14:35pm View    
hey man , many thanks for that.
i have searched on Github only the term i , not ilang.
Now you have the answer. Many Thanks.
Member 14641430 1-Nov-19 14:35pm View    
hey man , many thanks for that.
i have searched on Github only the term i , not ilang.

Now you have the answer. Many Thanks.
Member 14641430 1-Nov-19 8:22am View    
No , i is a language.
When you go on , let us say "arrays" on rosetta code you can choose "i" as language to present an array.
Here is the code that i have seen under "arrays" and "i".
main
//Fixed-length arrays.
f $= array.integer[1]()
f[0] $= 2
print(f[0])

//Dynamic arrays.
d $= list.integer()
d[+] $= 2
print(d[1])
}