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/09/24 22:15] – billh | docs:programming:hello_world_examples [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
===== php ===== | ===== php ===== | ||
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. | ||
- | ^ plain ^ with functions and variables ^ | + | ==== simple ==== |
- | |< | + | < |
<?php | <?php | ||
echo "Hello World!"; | echo "Hello World!"; | ||
?> | ?> | ||
- | </ | + | </ |
+ | |||
+ | ==== with functions and variables ==== | ||
+ | < | ||
<?php | <?php | ||
$myString = "Hello World!"; | $myString = "Hello World!"; | ||
Line 19: | 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 | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
===== html ===== | ===== html ===== | ||
HTML by itself does not have functions or variables. | HTML by itself does not have functions or variables. | ||
- | < | + | ==== simple ==== |
+ | < | ||
< | < | ||
< | < | ||
Line 39: | Line 64: | ||
===== c ===== | ===== c ===== | ||
C is a procedural, structured language that does not have objects. | C is a procedural, structured language that does not have objects. | ||
- | ^ plain ^ with functions and variables ^ | + | ==== simple ==== |
- | |< | + | < |
#include < | #include < | ||
Line 47: | Line 72: | ||
return 0; | return 0; | ||
} | } | ||
- | </ | + | </ |
+ | ==== with functions and variables ==== | ||
+ | < | ||
#include < | #include < | ||
Line 57: | Line 84: | ||
} | } | ||
- | int main(){ | + | int main(int argc, char **argv){ |
myString = "Hello World!"; | myString = "Hello World!"; | ||
printMyString(); | printMyString(); | ||
return 0; | return 0; | ||
} | } | ||
- | </ | + | </ |
===== objective-c ===== | ===== objective-c ===== | ||
- | Objective-C is an extension of c, so a plain version will not be shown here. | + | Objective-C is an extension of c, so a simple |
- | ^ with functions and variables^ | + | ==== with functions and variables |
- | |< | + | < |
#import < | #import < | ||
#import < | #import < | ||
Line 92: | Line 119: | ||
return 0; | return 0; | ||
} | } | ||
- | </ | + | </ |
===== 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 ===== | ||
- | ^ plain ^ with functions and variables ^ | + | ==== simple ==== |
- | |< | + | < |
public class HelloWorld{ | public class HelloWorld{ | ||
public static void main(String args[]){ | public static void main(String args[]){ | ||
Line 104: | Line 183: | ||
} | } | ||
} | } | ||
- | </ | + | </ |
+ | ==== with methods and variables ==== | ||
+ | < | ||
public class HelloWorldVar{ | public class HelloWorldVar{ | ||
Line 118: | Line 199: | ||
} | } | ||
} | } | ||
- | </ | + | </ |
Line 124: | Line 205: | ||
===== perl ===== | ===== perl ===== | ||
- | ^ plain ^ with functions and variables ^ | + | ==== simple ==== |
- | |< | + | < |
# | # | ||
print "Hello World!\n"; | print "Hello World!\n"; | ||
- | </ | + | </ |
+ | ==== with functions and variables ==== | ||
+ | < | ||
# | # | ||
# warnings encountered | # warnings encountered | ||
Line 159: | Line 242: | ||
printLocalString(); | printLocalString(); | ||
- | </ | + | </ |