소스 검색

Set console to clear on each run

ApisNecros 1 년 전
부모
커밋
0a4003d853
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      starfish.js

+ 1 - 0
starfish.js

@@ -125,6 +125,7 @@ class CodeBox {
         this.pointer = {X: 0, Y: 0};
         this.curr_direction = this.directions.EAST;
         this.outputDOM.value = "";
+        console.clear();
 
         const cbRaw = this.codeBoxDOM.value;
         const rows = cbRaw.split("\n");