StandForTheRight
StandForTheRight

Reputation: 135

open scala editor in cmd - Windows 7 64 bit

How to open an editor (Notepad or Notepad++ or Atom or any Editor) from windows command prompt from REPL

===============
scala >
===============

Adding one more question:: Is there any way to open an existing SCALA file from REPL?

Upvotes: 1

Views: 144

Answers (1)

Aamir
Aamir

Reputation: 2424

Type this in REPL Runtime.getRuntime.exec("notepad.exe")

Upvotes: 1

Related Questions