Hello, world!

Finally got this working, anyway here's 10 hello world codes in diff coding langs:

  1. Python:

    print("Hello, World!")
    
  2. JavaScript:

    console.log("Hello, World!");
    
  3. Java:

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

    using System;
    
    class Program {
        static void Main() {
            Console.WriteLine("Hello, World!");
        }
    }
    
  5. C++:

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

    puts "Hello, World!"
    
  7. Swift:

    print("Hello, World!")
    
  8. Go:

    package main
    
    import "fmt"
    
    func main() {
        fmt.Println("Hello, World!")
    }
    
  9. Kotlin:

    fun main() {
        println("Hello, World!")
    }
    
  10. Rust:

    fn main() {
        println!("Hello, World!");
    }