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