一句话证明你

Posted sharesdk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一句话证明你相关的知识,希望对你有一定的参考价值。

各种语言的 hello world

Shell

echo "hello world"

 

python 2.6 
print
"hello,world"

 

Python 3.+

print ("hello,world")

 

C++ 

# include <ostream>
int main (void)
{
std::cout<<"hello world";
}

 

C 

# include <stdio.h>
int main (void)
{
printf ("
hello world!")
return;
}

 

Java
public class helloworld {
// 程序的入口
public static void main (String args[]){
// 向控制台输出信息
System.out.println("hello world!");
}
}

 

php

<?php
echo "hello world!";
?>

 

Ruby 

puts "hello world."

 

Go

package
import "fmt"
func main(){
fmt.Printf("hello world!
 God Bless You");

}

 




以上是关于一句话证明你的主要内容,如果未能解决你的问题,请参考以下文章

请用一句话证明你是程序员

关于poc脚本的一些问题

如何用一句话说明什么是面向对象思想?

用一句话证明自己是程序员,我先来——hello world

arx代码片段

厚积薄发——才是归处