789회 2018년 01월 13일 로또 당첨 번호
제테크2018. 1. 13. 20:49
반응형
2 6 7 12 19 45 +38
반응형
'제테크' 카테고리의 다른 글
위례 지웰 푸르지오 최종 경쟁률 (0) | 2015.08.25 |
---|---|
세계에서 기준금리가 가장 높은 나라 (0) | 2015.03.09 |
화곡 도매 유통 단지 위치 (0) | 2014.12.07 |
Object C Windows 7에서 실행
카테고리 없음2017. 4. 10. 20:41
반응형
gnustep-devel-1.3.0-setup.exe
gnustep-msys-system-0.28.1-setup.exe
gnustep-core-0.28.0-setup.exe
프로그램 다운로드
sh.exe 실행
gcc -o asl hello.m -I /GNUstep/System/Library/Headers -L /GNUstep/System/Library/Libraries/ -lobjc -lgnustep-base -fconstant-string-class=NSConstantString
아래 파일 제작
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello, World!");
[pool drain];
return 0;
}
반응형