2009年7月20日月曜日

Ubuntuの DrScheme でHello world

[したいこと・しりたいこと]
Ubuntuの DrScheme でHello world

[環境]

Ubuntu Jaunty Jackalope 9.04 on VirtualBox 3.0.2

インストールするもの
plt-scheme
plt-scheme-doc



$ sudo apt-get install plt-scheme plt-scheme-doc

DrScheme起動
$ drscheme &

起動したらウィンドウ左下の
Choose Language -> Essential of Programming Languages (3rd ed.)

DrScheme再起動

再起動後
分割されたウィンドウの上にソースコードを入力

(define vhello "Hello world")
(define fhello
(lambda () "Hello world"))


分割されたウィンドウの下に実行コマンドを入力

> vhello
> (fhello)