mirror of
https://github.com/geohot/qira
synced 2025-03-13 10:33:30 +03:00
9 lines
99 B
C
9 lines
99 B
C
![]() |
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
int main(int argc) {
|
||
|
printf("hello: %f\n", sin(argc));
|
||
|
}
|
||
|
|
||
|
|