大都好物不坚牢,彩云易散琉璃脆。
白居易《简简吟》
作为个人博客,它的意义就是 记录,在这个嘈杂的世界里,真正能沉淀在你内心的东西。
这里将记录着我的学习笔记、经验以及其他生活中有意思的东西,我希望每一篇都是拙(zuó)实的精品,不仅有内容还有意思,也同时会在某个分类中发一些奇怪的东西(比如狗粮) 。
鉴于我是一程序猿,第一篇文章还是helloworld一下吧!
public class helloworld {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
#include <stdio.h>
int main() {
printf("Hello World !");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!";
return 0;
}
print('Hello World!')
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
alert("hello world!!!")
</script>
</body>
</html>