mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-06 04:29:57 +00:00
9 lines
101 B
C
9 lines
101 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
double pi = 3.141596;
|
||
|
|
||
|
printf("pi is %f\n", pi);
|
||
|
return 0;
|
||
|
}
|