Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:programming:hello_world_examples [2006/11/30 15:24] – billh | docs: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. | PHP can be embedded into an html file, and interpreted at runtime for dynamic web page content. | ||
==== simple ==== | ==== simple ==== | ||
- | < | + | < |
<?php | <?php | ||
echo "Hello World!"; | echo "Hello World!"; | ||
?> | ?> | ||
</ | </ | ||
+ | |||
==== with functions and variables ==== | ==== with functions and variables ==== | ||
- | < | + | < |
<?php | <?php | ||
$myString = "Hello World!"; | $myString = "Hello World!"; | ||
Line 21: | Line 22: | ||
printMyString(); | printMyString(); | ||
?> | ?> | ||
+ | </ | ||
+ | |||
+ | ===== ASP.NET ===== | ||
+ | <code asp> | ||
+ | < | ||
+ | " | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | <script runat=" | ||
+ | Sub Page_Load(sender As Object, e As EventArgs) | ||
+ | timeLabel.Text = DateTime.Now.ToString() | ||
+ | End Sub | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
</ | </ | ||
Line 26: | Line 48: | ||
HTML by itself does not have functions or variables. | HTML by itself does not have functions or variables. | ||
==== simple ==== | ==== simple ==== | ||
- | < | + | < |
< | < | ||
< | < | ||
Line 43: | Line 65: | ||
C is a procedural, structured language that does not have objects. | C is a procedural, structured language that does not have objects. | ||
==== simple ==== | ==== simple ==== | ||
- | < | + | < |
#include < | #include < | ||
Line 52: | Line 74: | ||
</ | </ | ||
==== with functions and variables ==== | ==== with functions and variables ==== | ||
- | < | + | < |
#include < | #include < | ||
Line 72: | 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 ==== | ||
- | < | + | < |
#import < | #import < | ||
#import < | #import < | ||
Line 102: | 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 ==== | ||
- | < | + | < |
#include < | #include < | ||
Line 112: | Line 134: | ||
</ | </ | ||
==== with classes, functions, and variables ==== | ==== with classes, functions, and variables ==== | ||
- | < | + | < |
#include < | #include < | ||
#include < | #include < | ||
Line 155: | Line 177: | ||
===== java ===== | ===== java ===== | ||
==== simple ==== | ==== simple ==== | ||
- | < | + | < |
public class HelloWorld{ | public class HelloWorld{ | ||
public static void main(String args[]){ | public static void main(String args[]){ | ||
Line 163: | Line 185: | ||
</ | </ | ||
==== with methods and variables ==== | ==== with methods and variables ==== | ||
- | < | + | < |
public class HelloWorldVar{ | public class HelloWorldVar{ | ||
Line 184: | Line 206: | ||
===== perl ===== | ===== perl ===== | ||
==== simple ==== | ==== simple ==== | ||
- | < | + | < |
# | # | ||
Line 190: | Line 212: | ||
</ | </ | ||
==== with functions and variables ==== | ==== with functions and variables ==== | ||
- | + | < | |
- | < | + | |
# | # | ||
# warnings encountered | # warnings encountered |