Hello,SegmentFault!

请输入图片描述

//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!"); 
  }
}

感谢 @高阳Sunny配图~php

相关文章
相关标签/搜索