update meta data
This commit is contained in:
parent
f3a896c724
commit
90e15ed6ce
3307 changed files with 1674 additions and 7 deletions
7
Task/Interactive-programming/00DESCRIPTION
Normal file
7
Task/Interactive-programming/00DESCRIPTION
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Many language implementations come with an ''interactive mode''. This is a [[wp:command-line interpreter|command-line interpreter]] that reads lines from the user and evaluates these lines as statements or expressions. An interactive mode may also be known as a ''command mode'', a ''[[wp:read-eval-print loop|read-eval-print loop]]'' (REPL), or a ''shell''.
|
||||
|
||||
Show how to start this mode, then, as a small example of its use, interactively create a function of two strings and a separator that returns the strings separated by two concatenated instances of the separator.
|
||||
|
||||
For example, <tt>f('Rosetta', 'Code', ':')</tt> should return <tt>'Rosetta::Code'</tt>
|
||||
|
||||
Note: this task is not about creating your own interactive mode.
|
||||
Loading…
Add table
Add a link
Reference in a new issue