おのこもすなる Objective-C といふものを (ry

Objective-Chello world は以下のように書ける。

#include <stdio.h>

int main(void)
{
  puts("hello world");
  return 0;
}

これをコンパイルするには以下のようにする。

gcc -Wall tokuhiro.m

実行結果は以下のとおり

hello world

C と同じなので簡単ですね (ぉ

参考: http://d.hatena.ne.jp/tokuhirom/20090713/1247459368