Content deleted Content added
→Hello world: direct address! |
|||
Line 214:
The [[hello world program]] is often used in demonstrating a programming language's most routine usage. In Perl 6, hello world can be written:
say "Hello, world"
-- though [[there is more than one way to do it]].The <code>say</code> function, which is new in Perl 6, prints its parameters (like the <code>print</code> function), but with a trailing [[newline]].
|