N 
		
				
				
			
		N3ur0
Guest
Latin!
Saluto Universitas
				
			Saluto Universitas
Follow along with the video below to see how to install our site as a web app on your home screen.
							
						
Note: this_feature_currently_requires_accessing_site_using_safari
Ok, here is it in German:Estevan said:Here is one in English
Code:Hello World
Hallo Welt!
	NiceTheFallibleFiend said:# Perl - with subroutine
# you could just use print "Hello, World!\n"
# but that wouldn't be any fun.
do &outMsg;
sub outMsg {
$output = "Hello, World";
print "$output\n";
}