LoginSignup
4
0

More than 3 years have passed since last update.

令和の始まりにHello, Reiwa!と叫ぶ

Last updated at Posted at 2019-04-30

はじめに

Hello, World! をもじった、ただのネタ記事です。

プログラム

C

HelloReiwa.c
#include <stdio.h>
int main() {
    printf("Hello, Reiwa!\n");
    return 0;
}

Java

HelloReiwa.java
public class HelloReiwa {
    public static void main(String[] args) {
        System.out.println("Hello, Reiwa!");
    }
}

Perl

HelloReiwa.pl
print "Hello, Reiwa!\n";

PHP

HelloReiwa.php
<?php
echo "Hello, Reiwa!\n";
?>

Python

HelloReiwa.py
print("Hello, Reiwa!")

Ruby

HelloReiwa.rb
puts "Hello, Reiwa!"

まとめ

ありがとう平成。こんにちは令和。
令和の時代が、幸多き時代になりますように。

4
0
0

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
4
0