Skip to content

Commit

Permalink
[#64] New language: IO
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed Jul 15, 2021
1 parent 2b9da7a commit 83776ab
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
45 changes: 45 additions & 0 deletions langs/io.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
id: "io"
name: "Io"

info:
year: 2002
desc: "Dynamic prototype-based programming language in the same realm as Smalltalk and Self"
ext:
- io
web:
wiki: "https://en.wikipedia.org/wiki/Io_(programming_language)"
home: "https://iolanguage.org/"
source: "https://github.com/IoLanguage/io"
category: general
mode: interpreted
platform: []
syntax: lua
typing: dynamic
paradigm:
- functional
- imperative
- oo
usage: abandoned

install:
prepare:
manual: |
wget https://iobin.suspended-chord.info/linux/iobin-linux-x64-deb-current.zip -O io.zip
unzip io.zip
mv IoLanguage-*-Linux-x64.deb io.deb
deb:
- io.deb

repl: |
io
main: "Main.io"
template: |
"Hello, world!" println
run: |
io -i Main.io
scope:
code: |
x := 123 * 234
1 change: 1 addition & 0 deletions lib/jsonschema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ properties:
- apl
- const: haskell
- const: lisp
- const: lua
- const: pascal
- const: python
- const: text
Expand Down

0 comments on commit 83776ab

Please sign in to comment.