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 13:59] – 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 100: | Line 122: | ||
===== cpp ===== | ===== cpp ===== | ||
+ | * At least on the Mac platform, use g++ instead of gcc to compile because it already has the C++ standard libraries linked. | ||
+ | ==== simple ==== | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | std::cout << "Hello World!\n"; | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==== with classes, functions, and variables ==== | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include < | ||
+ | |||
+ | using namespace std; // or type std:cout everywhere | ||
+ | |||
+ | class Hello | ||
+ | { | ||
+ | public: | ||
+ | Hello(const char * userString); | ||
+ | ~Hello(); | ||
+ | void printMsg(); | ||
+ | |||
+ | private: | ||
+ | string privateString; | ||
+ | |||
+ | }; | ||
+ | |||
+ | Hello:: | ||
+ | { | ||
+ | privateString = userString; | ||
+ | } | ||
+ | |||
+ | Hello:: | ||
+ | { | ||
+ | // do nothing special | ||
+ | } | ||
+ | |||
+ | void Hello:: | ||
+ | { | ||
+ | cout << privateString; | ||
+ | } | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | Hello HelloInstance(" | ||
+ | HelloInstance.printMsg(); | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
===== java ===== | ===== java ===== | ||
==== simple ==== | ==== simple ==== | ||
- | < | + | < |
public class HelloWorld{ | public class HelloWorld{ | ||
public static void main(String args[]){ | public static void main(String args[]){ | ||
Line 111: | Line 185: | ||
</ | </ | ||
==== with methods and variables ==== | ==== with methods and variables ==== | ||
- | < | + | < |
public class HelloWorldVar{ | public class HelloWorldVar{ | ||
Line 132: | Line 206: | ||
===== perl ===== | ===== perl ===== | ||
==== simple ==== | ==== simple ==== | ||
- | < | + | < |
# | # | ||
Line 138: | Line 212: | ||
</ | </ | ||
==== with functions and variables ==== | ==== with functions and variables ==== | ||
- | + | < | |
- | < | + | |
# | # | ||
# warnings encountered | # warnings encountered |