8 lines
102 B
C
Executable file
8 lines
102 B
C
Executable file
#!/bin/tcc -run
|
|
|
|
#include <stdio.h> //printf and shit
|
|
|
|
int main(){
|
|
printf("asd");
|
|
return 0;
|
|
}
|