This is an old revision of the document!
without variables | with variables |
<?php
echo "Hello World!";
?>
| <?php
$myString = "Hello World!";
echo $myString;
?>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Hello World Example</title>
</head>
<body>
<h1>Hello World Example</h1>
<p>Hello World!</p>
</body>
</html>
without variables | with variables |
#include <stdio.h>
int main(){
printf("Hello World!\n");
return 0;
}
| #include <stdio.h>
const char * myString;
int main(){
myString = "Hello World!";
printf("%s\n",myString);
return 0;
}
|
public class HelloWorld{
public static void main(String args[]){
System.out.println("Hello World!");
}
}