Archived
1
0
Fork 0
This repository has been archived on 2024-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
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;
}