Giter Club home page Giter Club logo

Comments (21)

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_bash_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_bash_source.txt

echo "Hello, World!"
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_BASIC_TYPEtxt300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_BASIC_source.txt

10 PRINT "Hello, World!"
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_bat_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_bat_source.txt

@echo off
echo Hello, World!

#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_cbl_TYPEhexReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_cbl_source.txt

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
* simple hello world program
PROCEDURE DIVISION.
    DISPLAY 'Hello, World!'.
    STOP RUN.
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_clj_TYPEtxt300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_clj_source.txt

(println "Hello, World!")

#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_cpp_TYPEhex300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_cpp_source.txt

#include <iostream>

int main() 
{
  std::cout << "Hello, World!\n";
  return 0;
}

#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_c_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_c_source.txt

#include <stdio.h>

int main() 
{
  printf("Hello, World!\n");
  return 0;
}
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_cs_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_cs_source.txt

using System;

class Program
{
    void Main(string[] args)
    {
        Console.WriteLine("Hello, World!");
    }
}
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_dart_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_dart_source.txt

void main() {
  print('Hello, World!');
}
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_d_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_d_source.txt

import std.stdio;
void main()
{
    writeln("Hello, World!");
}
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220326HelloWorld_js_TYPEtxt300x300

2. Author

Designed by Yuji Sode on [2022-03-26]

3. Description

20220326HelloWorld_js_source.txt

// For HTML Document
document.write("Hello, World!");

// For Browser Console
console.log("Hello, World!");

#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-26] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_ex_TYPEtxt300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_ex_source.txt

IO.puts("Hello, World!")
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_f_TYPEhex300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_f_source.txt

program Hello
  print *, "Hello, World!"
end program Hello
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_go_TYPEtxt300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_go_source.txt

package main
import "fmt"

func main() {
    fmt.Println("Hello, World!")
}
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_hs_TYPEtxt300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_hs_source.txt

main :: IO ()
main = putStrLn "Hello, World!"
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_hy_TYPEtxt300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_hy_source.txt

(print "Hello, World!")
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_java_TYPEhex300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_java_source.txt

class Main {
 public static void main() {
    System.out.println("Hello, World!");
  }
}
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_jl_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_jl_source.txt

println("Hello, World!")
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_kt_TYPEhexReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_kt_source.txt

fun main() {                        
    println("Hello, World!")        
}
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220328HelloWorld_n_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-28]

3. Description

20220328HelloWorld_n_source.txt

பதிப்பி "உலகே வணக்கம்"
பதிப்பி "Hello, World!"
exit()
#============
#Reference cited
#it derived from '"Hello, World!" program' (26 March 2022, at 03:05 (UTC)) in Wikipedia on [2022-03-28] and at: 
#
#https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
#
#Text is available under the Creative Commons Attribution-ShareAlike License 3.0:
#
#https://creativecommons.org/licenses/by-sa/3.0/
#

from arclandscape.

YujiSODE avatar YujiSODE commented on September 26, 2024

1. Image

20220329HelloWorld_tcl_TYPEtxtReverse300x300

2. Author

Designed by Yuji Sode on [2022-03-29]

3. Description

20220329HelloWorld_tcl_source.txt

puts stdout {Hello, World!}

from arclandscape.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.