docs:programming:hello_world_examples

This is an old revision of the document!


Hello World Examples

<?php
	echo "Hello World!";
?>
<!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>
#include <stdio.h>

int main(){
        printf("Hello World!\n");
        return 0;
}
  • docs/programming/hello_world_examples.1158984789.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)