Welcome to my Web Page of attempt!
I'm glad that you can arrive here.
I'm a green-hand guy, a fresher who is still learning.
This is my first website written in Markdown.
Well, I know, this is useless.
This is quite boring.
But anyway, have a nice day!
你好呀,路过的好心人!
欢迎来到我的第一个网页。
很高兴你能来到这里。
我是一个新手,一个还在学习的大学生。
这是我第一个使用 Markdown 写的网页。
好吧,我也知道,这个网页没啥用。
相当无聊。
不过,无论如何,祝你拥有美好的一天。
¡Gracias!
C:
#include <stdio.h>
int main()
{
printf ("Hello, World!");
return 0;
}C++:
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello, World!"<<endl;
return 0;
}Visual Basic:
Private Sub Form_Load()
Msgbox "Hello, World!",vbInformation, "Hello,World!"
End subMarkdown:
# Hello, World!
HTML:
<html>
<head>
<title>"Hello, World"</title>
</head>
<body>
Hello,World!
</body>
</html>
Rust:
fn main(){
println!("Hello, World!");
}