The aim of this repository is to invite everyone to add their Hello, World! in all language you program.
To add your Hello, World! follow these 3 steps:
-
Create a fork of this repository.
-
Add your Hello, World! in the languages you master. See What I need to change in the code?
-
Finally, make a pull request and add a ⭐!
You need to add this text in the int main() function.
printf("Hello, World! by UserName");
You need to add this text in the int main() function.
std::cout << "Hello, World! by UserName" << std::endl;
You need to add this text at the end of the file.
print("Hello, World! by UserName")
You need to add this text in the <body> container.
<p>Hello, World! by UserName</p>
You need to add this text in the main function.
println!("Hello, World! by UserName");
You need to add this expression in your script.
print_endline "Hello, World! by UserName"
You need to add this statement in your script.
console.log("Hello, World! by UserName")
You need to add this text after the package main
declaration
import "fmt"
And this statement in the main function
fmt.Println("Hello, World! by UserName")
You need to add this text at the beginning of the file
import io
And this text at the end of the file
io.println("Hello, World! by UserName")