Hello world

哈囉👋 這是我的第一篇文章,因為不知道要說什麼所以就向世界說你好吧:D
(然後我會更新一些之前的內容,時間會寫在當時,反正就看看吧:D)

Python

1
print("Hello world")

C++

1
2
3
4
5
6
7
#include <iostream>
using namespace std;

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