mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +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;
|
|
}
|