Interactive help: Difference between revisions

Content added Content deleted
(julia example)
Line 193: Line 193:


=={{header|Julia}}==
=={{header|Julia}}==
When Julia is run without a program file as argument, the REPL (Read-Evaluate-Print Loop) runs. Entering a ? at the prompt brings up help, with help on a topic printer if the topic name is preceded by ? at the prompt.
When Julia is run without a program file as argument, the REPL (Read-Evaluate-Print Loop) runs. Entering a ? at the prompt brings up help, with help on a specific topic obtained if the topic name is preceded by ? at the prompt.
<lang julia>
<lang julia>


Line 238: Line 238:
an explicit return statement will return the last expression in the function body.
an explicit return statement will return the last expression in the function body.
</lang>
</lang>



=={{header|Perl}}==
=={{header|Perl}}==