티스토리 툴바

Programming Language

'Programming Language/IO'에 해당되는 글 2건

  1. 2008/10/16 Io에서는 코드 또한 데이터이다.
  2. 2008/08/30 io Language
코드 또한 데이터이다.

helloIo 란 블록을 생성한다.

Io> helloIo := block("hello Io" println)
==> method(
    "hello Io" println

약간의 introspection 을 해보자.

Io>helloIo message
==> "hello Io" println

Io>helloIo message name
==> "hello Io"

Io>helloIo message next
==> println

Io>helloIo message next name
==> println

Io>pr := helloIo message next name
==> println

Io>"hello Io" pr
==> println

Io>"hello Io" #{pr} interpolate
==> "hello Io"

Posted by 창민짱 Trackback 0 Comment 0
애자일컨설팅의 김창준님의
나를 만든 언어
라는 글을 읽고 나서 io 에 대해 공부하는중이다.

나름 io 언어가 지향하는 철학과 문화를 이해하려고 노력하고 있습니다.ㅎㅎㅎㅎ
TAGio
Posted by 창민짱 Trackback 0 Comment 0