Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 28 章 Objective-C

$ sudo apt-get install gobjc gobjc++

$ sudo apt-get install gnustep-make
    

例 28.1. Objective-C hello world

        
$ cat hello.m
#import <stdio.h>

int main( int argc, const char *argv[] ) {
    printf( "hello world\n" );
    return 0;
}
		
        

$ gcc hello.m

$ ./a.out
hello world