Skip to content

Commit

Permalink
Change prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
axkr committed Nov 30, 2018
1 parent a6fe966 commit 9e348f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public static void main(final String args[]) {

while (true) {
try {
inputExpression = console.readString(stdout, " ");
inputExpression = console.readString(stdout, ">> ");
if (inputExpression != null) {
trimmedInput = inputExpression.trim();
if (trimmedInput.length() >= 4 && trimmedInput.charAt(0) == '/') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public static void main(final String args[]) {

while (true) {
try {
inputExpression = console.readString(stdout, " ");
inputExpression = console.readString(stdout, ">> ");
if (inputExpression != null) {
trimmedInput = inputExpression.trim();
if (trimmedInput.length() >= 4 && trimmedInput.charAt(0) == '/') {
Expand Down

0 comments on commit 9e348f2

Please sign in to comment.