mogens_og_karen/src/excercises/constants.cc
2024-02-06 18:06:16 +01:00

11 lines
119 B
C++

# include <iostream>
using namespace std;
int main() {
const double pi = 3.14;
cout << pi;
return 0;
}