No Programming, No Life

プログラミング関連の話題や雑記

Iokeをインストールしてみた

はじめに

ちょっと気になってた言語なのでひとまずインストールまでやってみたのでメモです。

インストール

環境

Mac OS X 10.6.4

portsで管理されてるかな??


$ port search ioke
No match for ioke found

なんと!無いのか。

じゃあ、本家からダウンロードだな

ここに出てる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

  1. > nil

iik> exit
Bye.


できたできた。

おわりに

これでIokeで遊べそう!ここを上からやってくかな〜。

*1:ものすごい数のテストが流れます。見てて気持ちいいです。