# 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.

## Example(s)

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

## See also

- [? command (Editor processor)](https://d3codex.com/editor/question-command-editor/)
- [l command (Editor processor)](https://d3codex.com/editor/l-command-editor-processor/)
- [n command (Editor processor)](https://d3codex.com/editor/n-command-editor-processor/)
- [Editor overview](https://d3codex.com/editor/editor-overview/)

---
Source: https://d3codex.com/editor/using-the-enter-key/ - part of the D3Codex reference.
