//c
#include<stdio.h>
int main()
{
printf("hello,segmentfault!\n");
return 0;
}
//cpp
#include<iostream>
int main()
{
cout<<"hello,segmentfault!"<<endl;
return 0;
}
#python
print 'hello,segmentfault!'
//php
<?php echo "hello,segmentfault!"; ?>
//go
package main
import "fmt"
func main() {
fmt.Println("hello,segmentfault!")
}
//java
public class HelloSegmentFault{
public static void main(String[] args) {
System.out.println("hello,segmentfault!");
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用。你还可以使用@来通知其他用户。