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/23 01:48] – billh | docs:programming:hello_world_examples [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
===== php ===== | ===== php ===== | ||
- | ^without variables^with variables^ | + | PHP can be embedded into an html file, and interpreted at runtime for dynamic web page content. |
- | |< | + | ==== simple ==== |
+ | < | ||
<?php | <?php | ||
echo "Hello World!"; | echo "Hello World!"; | ||
?> | ?> | ||
- | </ | + | </ |
+ | |||
+ | ==== with functions and variables ==== | ||
+ | < | ||
<?php | <?php | ||
$myString = "Hello World!"; | $myString = "Hello World!"; | ||
- | echo $myString; | + | |
+ | function printMyString(){ | ||
+ | global $myString; | ||
+ | echo $myString; | ||
+ | } | ||
+ | |||
+ | 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. |
+ | ==== simple ==== | ||
+ | < | ||
< | < | ||
< | < | ||
Line 30: | Line 63: | ||
===== c ===== | ===== c ===== | ||
- | ^without variables^with variables^ | + | C is a procedural, structured language that does not have objects. |
- | |< | + | ==== simple ==== |
+ | < | ||
#include < | #include < | ||
Line 38: | Line 72: | ||
return 0; | return 0; | ||
} | } | ||
- | </ | + | </ |
+ | ==== with functions and variables ==== | ||
+ | < | ||
#include < | #include < | ||
const char * myString; | const char * myString; | ||
- | int main(){ | + | void printMyString(){ |
+ | printf(" | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | int main(int argc, char **argv){ | ||
myString = "Hello World!"; | myString = "Hello World!"; | ||
- | | + | |
return 0; | return 0; | ||
} | } | ||
- | </ | + | </ |
===== objective-c ===== | ===== objective-c ===== | ||
+ | Objective-C is an extension of c, so a simple version will not be shown here. | ||
+ | ==== with functions and variables ==== | ||
+ | <code objc> | ||
+ | #import < | ||
+ | #import < | ||
+ | |||
+ | @interface Hello: | ||
+ | NSString *myString; | ||
+ | } | ||
+ | -(void)printMyString; | ||
+ | @end | ||
+ | |||
+ | @implementation Hello | ||
+ | |||
+ | -(void)printMyString{ | ||
+ | myString = [NSString stringWithString: | ||
+ | NSLog(myString); | ||
+ | } | ||
+ | @end | ||
+ | |||
+ | int main( int argc, const char *argv[] ) { | ||
+ | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; | ||
+ | Hello *h = [[Hello alloc] init]; | ||
+ | [h printMyString]; | ||
+ | [pool release]; | ||
+ | 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 62: | Line 183: | ||
} | } | ||
} | } | ||
- | </ | + | </ |
+ | ==== with methods and variables ==== | ||
+ | < | ||
public class HelloWorldVar{ | public class HelloWorldVar{ | ||
Line 76: | Line 199: | ||
} | } | ||
} | } | ||
- | </ | + | </ |
===== javascript ===== | ===== javascript ===== | ||
+ | ===== perl ===== | ||
+ | ==== simple ==== | ||
+ | <code perl> | ||
+ | # | ||
+ | print "Hello World!\n"; | ||
+ | </ | ||
+ | ==== with functions and variables ==== | ||
+ | <code perl> | ||
+ | # | ||
+ | # warnings encountered | ||
+ | #use strict; | ||
+ | # and output additional warnings; | ||
+ | # it is commented out here because it will | ||
+ | # fail since the variable below requires | ||
+ | # an explicit package name (such as my) | ||
+ | $myString = "Hello World!"; | ||
+ | |||
+ | sub printMyString { # sub is used to define a subroutine, or | ||
+ | # function in perl; | ||
+ | |||
+ | print $myString . " | ||
+ | # the global $myString variable; | ||
+ | } | ||
+ | |||
+ | sub printLocalString { | ||
+ | my $myString = "Hello Moon!"; | ||
+ | # $myString as private; | ||
+ | |||
+ | print $myString . " | ||
+ | # $myString above; | ||
+ | } | ||
+ | |||
+ | printMyString(); | ||
+ | |||
+ | printLocalString(); | ||
+ | </ |