Hello World

Congratulations on discovering DeepX! Today marks a new beginning. We’ll start with the most fundamental concepts, including computer software, hardware, programming languages, and more. It might be fun, or maybe boring, but none of that really matters!

Hello World Is a Required Course

C Language

1
2
3
4
5
6
#include <stdio.h>

int main() {
printf("Hello, World!\n");
return 0;
}

C++ Language

1
2
3
4
5
6
#include <iostream>

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

Life Is Short, I Use Python

1
print("Hello, World!")

Go Language

1
2
3
4
5
6
7
package main

import "fmt"

func main() {
fmt.Println("Hello, World!")
}

Java

1
2
3
4
5
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}

JavaScript

1
console.log("Hello, World!");

Rust

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