Your browser doesn't support the features required by impress.js, so you are presented with a simplified version of this presentation.

For the best experience please use the latest Chrome, Safari or Firefox browser.

Hello World

by liangqing

Hello World Of Programming Languages

Javascript

var a = 100;
console.log("Hello World")

Scala

val a = List(1, 2, 3)
println("Hello World")

Bash

echo "Hello World"

C++

#include<iostream>
using namespace std;

int main() {
    cout << "Hello World" << endl;
    return 0;
}

PHP

echo "Hello World";

Java

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

Overview

Use a spacebar or arrow keys to navigate