测试一下SegmentFault的blog撰写体验,程序员习惯,写个hello, world
先来个C语言版的:
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("hello, world\n");
return 0;
}
再来个Go语言版的:
package main
import (
"fmt"
)
func main() {
fmt.Println("hello, world")
}
结论:Markdown编辑器体验很不错。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。