Hello World!

Posted by junk727 on February 12, 2023

Hello World!

Starting a PS blog on github!

1
2
3
4
5
6
7
8
#include <bits/stdc++.h>
using namespace std;

int main()
{
	cout << "Hello World!";
	return 0;
}