docs:programming:hello_world_examples

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:programming:hello_world_examples [2006/12/30 19:37] billhdocs:programming:hello_world_examples [2008/08/03 00:25] (current) – external edit 127.0.0.1
Line 4: Line 4:
 PHP can be embedded into an html file, and interpreted at runtime for dynamic web page content.  It can also be executed at the command line by using the php program. PHP can be embedded into an html file, and interpreted at runtime for dynamic web page content.  It can also be executed at the command line by using the php program.
 ==== simple ==== ==== simple ====
-<code>+<code php>
 <?php <?php
  echo "Hello World!";  echo "Hello World!";
Line 22: Line 22:
  printMyString();  printMyString();
 ?> ?>
 +</code>
 +
 +===== ASP.NET =====
 +<code asp>
 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 +<html>
 + <head>
 + <title>Hello World - ASP.NET</title>
 +<script runat="server" language="VB">
 + Sub Page_Load(sender As Object, e As EventArgs)
 + timeLabel.Text = DateTime.Now.ToString()
 + End Sub
 +</script>
 + </head>
 + <body>
 + <p>Hello World!</p>
 + <p>The time is now: 
 + <asp:Label runat="server" id="timeLabel" /></p>
 + </body>
 +</html>
 </code> </code>
  
Line 27: Line 48:
 HTML by itself does not have functions or variables.  It is a tagged language most commonly used to display a web page. HTML by itself does not have functions or variables.  It is a tagged language most commonly used to display a web page.
 ==== simple ==== ==== simple ====
-<code>+<code html4strict>
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 <html> <html>
Line 44: Line 65:
 C is a procedural, structured language that does not have objects.  C is extended by other languages, such as C++ and Objective-C. C is a procedural, structured language that does not have objects.  C is extended by other languages, such as C++ and Objective-C.
 ==== simple ==== ==== simple ====
-<code>+<code c>
 #include <stdio.h> #include <stdio.h>
  
Line 53: Line 74:
 </code> </code>
 ==== with functions and variables ==== ==== with functions and variables ====
-<code>+<code c>
 #include <stdio.h> #include <stdio.h>
  
Line 73: Line 94:
 Objective-C is an extension of c, so a simple version will not be shown here. Objective-C is an extension of c, so a simple version will not be shown here.
 ==== with functions and variables ==== ==== with functions and variables ====
-<code>+<code objc>
 #import <Foundation/NSObject.h> #import <Foundation/NSObject.h>
 #import <Foundation/NSString.h> #import <Foundation/NSString.h>
Line 103: Line 124:
 * At least on the Mac platform, use g++ instead of gcc to compile because it already has the C++ standard libraries linked. * At least on the Mac platform, use g++ instead of gcc to compile because it already has the C++ standard libraries linked.
 ==== simple ==== ==== simple ====
-<code>+<code cpp>
 #include <iostream> #include <iostream>
  
Line 113: Line 134:
 </code> </code>
 ==== with classes, functions, and variables ==== ==== with classes, functions, and variables ====
-<code>+<code cpp>
 #include <iostream> #include <iostream>
 #include <string> #include <string>
Line 156: Line 177:
 ===== java ===== ===== java =====
 ==== simple ==== ==== simple ====
-<code>+<code java>
 public class HelloWorld{ public class HelloWorld{
         public static void main(String args[]){         public static void main(String args[]){
Line 164: Line 185:
 </code> </code>
 ==== with methods and variables ==== ==== with methods and variables ====
-<code>+<code java>
 public class HelloWorldVar{ public class HelloWorldVar{
  
Line 185: Line 206:
 ===== perl ===== ===== perl =====
 ==== simple ==== ==== simple ====
-<code>+<code perl>
 #!/usr/bin/perl #!/usr/bin/perl
  
Line 191: Line 212:
 </code> </code>
 ==== with functions and variables ==== ==== with functions and variables ====
- +<code perl>
-<code>+
 #!/usr/bin/perl -w               # the 'w' tells perl to inform you of any #!/usr/bin/perl -w               # the 'w' tells perl to inform you of any
                                  # warnings encountered                                  # warnings encountered
  • docs/programming/hello_world_examples.1167532625.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)