Files
How2UseActions/main.cpp
cat 1cc6aeefd2
All checks were successful
Compile / Compile (push) Successful in 4s
Fixing a spelling mistake
2026-01-06 19:49:34 +02:00

9 lines
125 B
C++

#include <iostream>
int main() {
std::cout << "Hello world" << std::endl;
std::cout << "Second thing\n";
return 0;
}