mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-07-13 08:47:56 +01:00
9 lines
108 B
C++
9 lines
108 B
C++
#include <format>
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
//
|
|
std::cout << std::format("hello world\n");
|
|
}
|