1
0
LearningCPP/main.cpp

12 lines
101 B
C++
Raw Normal View History

2022-08-12 14:59:08 +01:00
#include <iostream>
2022-08-13 19:02:27 +01:00
int test();
2022-08-13 00:34:25 +01:00
2022-08-12 14:59:08 +01:00
int main()
{
2022-08-13 19:02:27 +01:00
std::cout << test();
2022-08-12 14:59:08 +01:00
}
2022-08-13 00:34:25 +01:00
2022-08-13 19:02:27 +01:00
int test() {
2022-08-13 00:34:25 +01:00
}