Iokeをインストールしてみた
はじめに
ちょっと気になってた言語なのでひとまずインストールまでやってみたのでメモです。
インストール
環境
Mac OS X 10.6.4
じゃあ、本家からダウンロードだな
ここに出てるgitリポジトリからcloneする方法で行ってみました。
$ cd ~/tool # とりあえずHOMEディレクトリのtoolに作る
$ git clone git://github.com/olabini/ioke.git ioke # cloneしてくる
$ cd ioke # 落としてきたディレクトリに移動して
$ ant # ビルドだ!
$ emacs ~/.profile # ioke/bin を $PATH に追加
$ . ~/.profile
antするとビルドしてテスト*1してjarまで作ってくれます。
動作確認
$ ioke --help
Usage: ioke [switches] -- [programfile] [arguments]
-Cdirectory execute with directory as CWD
-d debug, set debug flag
-e script execute the script. if provided, no program file is necessary.
there can be many of these provided on the same command line.
-h, --help help, this message
-Idir add directory to 'System loadPath'. May be used more than once
--copyright print the copyright
--version print current version
$ ioke --version
Ioke P ikj 0.4.1-SNAPSHOT [2010-10-23 20:17 -- f792053]
よしよし。
Hello Worldしてみる
$ ioke
iik> "Hello, World Ioke" println
Hello, World Ioke
- > nil
iik> exit
Bye.
できたできた。
*1:ものすごい数のテストが流れます。見てて気持ちいいです。