Using the Enter key

Pressing ENTER advances the line pointer to the next line and displays the line if in command mode. If in insert mode and at a blank line, it returns to command mode. Pressing CTRL+M is the same as pressing ENTER.

Synonyms 

<return>

<linefeed>

CTRL+M

Enter

Example(s)

013 crt " enter response " :
.
014 input response
015+print "hello"
016+
...