😸

hello worldの長さ選手権

2022/12/05に公開

ルール説明

ルールは簡単でhello worldと表示するためのプログラムの長さを競うだけです

出場する言語

c言語系

  • c言語
  • c++
  • c#
  • Java
  • object-c

Web系

  • javascript
  • typescript
  • php

スクリプト系

  • python
  • Perl
  • ruby
  • tcl/tk

その他

  • Go
  • swift
  • r

1位 c#

using System;

namespace HelloWorldApplication {
    class HelloWorld {
        static void Main(string[] args) {
            Console.WriteLine("Hello,World!");
            Console.ReadKey();
        }
    }
}

210文字

2位 object-c

#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    NSLog (@"Hello,World!");
    [pool drain];
    return 0;
}

205文字

3位 javascript

<html>
<body>
<script language = "javascript" type = "text/javascript">document.write("Hello,World!")</script>
</body>
</html>

127文字

4位 Java

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

117文字

5位 c++

#include <iostream>
using namespace std;
int main() {
    cout << "Hello,World!";
    return 0;
}

98文字

おまけ

https://zenn.dev/banananeko/articles/044a4ad615fc8c

https://zenn.dev/banananeko/articles/2ee067051bcc7f

Discussion