LoginSignup
11
11

More than 5 years have passed since last update.

各種言語のHelloWorld [ Python / PHP / Java / Perl / Ruby ]

Last updated at Posted at 2014-08-22

Java

public class Main {
    public static void main (String[] args) {
        System.out.println("Hello World");
    }
}

Perl

#!/usr/bin/perl
print "Hello World";

PHP

<?php
echo "Hello World";
?>
  • ?> は省略可能

Python

print "Hello World"

Python3

  • 追記 : py3 では ( ) を省略できないようだ。
print ("Hello World");

Ruby

#!/usr/bin/ruby
puts "Hello World";
11
11
11

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
11