mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 21:05:16 +00:00
13 lines
170 B
C
13 lines
170 B
C
|
/*
|
||
|
* Check that we can compile helloworld
|
||
|
* RUN: llvmc2 %s -o %t
|
||
|
* RUN: ./%t | grep hello
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("hello\n");
|
||
|
return 0;
|
||
|
}
|