#include <iostream>
int main() {
std::cout << " C++: Hello, World!" << std::endl;
return 0;
}
print(" pyhon : Hello, World!")
<?php
echo " php: Hello, World!";
?>
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Java Hello, World!");
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> html: Hello, World!</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
console.log("JavaScript: Hello, World!");