This content originally appeared on DEV Community and was authored by Rohidul Islam
1. Python
print("Hello World!")
2. Java
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
3. JavaScript
console.log("Hello, World!")
4. C Sharp
using System;
class Hello {
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
5. Swift
print("Hello, World!")
6. Dart
void main() {
print("Hello, World!");
}
7. Go
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
8. C++
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello, World!";
return 0;
}
9. C
#include <stdio.h>
int main(void)
{
printf("Hello, World!");
}
10. Kotlin
fun main(args: Array<String>) {
println("Hello, World!")
}
This content originally appeared on DEV Community and was authored by Rohidul Islam
Print
Share
Comment
Cite
Upload
Translate
Updates
There are no updates yet.
Click the Upload button above to add an update.
APA
MLA
Rohidul Islam | Sciencx (2021-08-05T12:15:41+00:00) Hello, World! in 10 different languages ??. Retrieved from https://www.scien.cx/2021/08/05/hello-world-in-10-different-languages-%f0%9f%94%a5%f0%9f%94%a5/
" » Hello, World! in 10 different languages ??." Rohidul Islam | Sciencx - Thursday August 5, 2021, https://www.scien.cx/2021/08/05/hello-world-in-10-different-languages-%f0%9f%94%a5%f0%9f%94%a5/
HARVARDRohidul Islam | Sciencx Thursday August 5, 2021 » Hello, World! in 10 different languages ??., viewed ,<https://www.scien.cx/2021/08/05/hello-world-in-10-different-languages-%f0%9f%94%a5%f0%9f%94%a5/>
VANCOUVERRohidul Islam | Sciencx - » Hello, World! in 10 different languages ??. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/08/05/hello-world-in-10-different-languages-%f0%9f%94%a5%f0%9f%94%a5/
CHICAGO" » Hello, World! in 10 different languages ??." Rohidul Islam | Sciencx - Accessed . https://www.scien.cx/2021/08/05/hello-world-in-10-different-languages-%f0%9f%94%a5%f0%9f%94%a5/
IEEE" » Hello, World! in 10 different languages ??." Rohidul Islam | Sciencx [Online]. Available: https://www.scien.cx/2021/08/05/hello-world-in-10-different-languages-%f0%9f%94%a5%f0%9f%94%a5/. [Accessed: ]
rf:citation » Hello, World! in 10 different languages ?? | Rohidul Islam | Sciencx | https://www.scien.cx/2021/08/05/hello-world-in-10-different-languages-%f0%9f%94%a5%f0%9f%94%a5/ |
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.