Hello, World in 16 Different Programming languages.
👇
ASCII

48 65 6C 6C 6F 2C 20 77 6F 72 6C 64 21 0D 0A
http://ASP.NET 

Response.Write("Hello, World!")
VISUAL BASIC

Sub Main()
Print "Hello, World!"
End Sub
C

#include <stdio.h>
int main(void){
printf("Hello, world!\\n");
return 0;
}
C#

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

#include <iostream>

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

main() {
print('Hello World!');
}
HTML

<html>
<body>
Hello, World!
</body>
</html>

đź‘€ yes, I am here on the list.
JAVA

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

document.writeln('Hello, World!');
PHP

<?php
echo 'Hello, World!';
?>
PYTHON

print "Hello, World!"
RUBY

puts "Hello, World!"
SWIFT

print("hello world")
BASH

#!/bin/sh echo "Hello, World!"
GO

package main

import "fmt"

func main() {
fmt.Println("Hello World")
}
Don't worry, I don't know a few of these, comment with missing and known ones.
You can follow @jesss_codes.
Tip: mention @twtextapp on a Twitter thread with the keyword “unroll” to get a link to it.

Latest Threads Unrolled: