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