Hello World.
Here is a simple Hello World output in 4 different computer programming languages.
Python:
print("Hello, World!")
C:
#include <stdio.h>
int main() { printf("Hello, World!\n"); return 0;}
Java:
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); }}
Rust:
fn main() { println!("Hello, World!");}
Feel free to run these.