Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 582 Bytes

repl.md

File metadata and controls

16 lines (9 loc) · 582 Bytes

REPL

A simple REPL(read-eval-print loop) implementation is provided in the editor which can be open from the bottom panel GodotJS.

A dropdown list will be shown if auto-complete is available for the input partial expression. Press Up/Down to select one, and Tab to confirm the selection.

video

Note

So far, REPL runs on the javascript runtime the ScriptLanguage using.
And, the auto-complete feature may have side effects because the partial input is evaluated to get available candidates.


Go Back