Entries from 2009-07-14 to 1 day

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

Objective-C で hello world は以下のように書ける。 #include <stdio.h> int main(void) { puts("hello world"); return 0; } これをコンパイルするには以下のようにする。 gcc -Wall tokuhiro.m実行結果は以下のとおり hello worldC と同じなので簡単ですね (ぉ参考:</stdio.h>…