mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-18 22:46:30 +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");
|
||
|
}
|