코드가 실행되는 중간에 중복 실행되는 것과, 실행 후에 남은 출력에 대한 해결 방안 #2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
정한 님이 만드신 '연고로직'을 탐구해 보던 중 코드가 실행되는 중에 또 Run! 버튼을 누르면 중복되어 실행되는 문제를 발견하였습니다.
따라서 이를 해결하고자 코드 속 run이라는 함수가 running이라는 변수가 거짓일 때에만 작동하도록 수정하였으며, 코드가 모두 실행되고 난 뒤 (Logic 클래스에 run 메서드 속 while문이 끝난 뒤)에 running 변수가 다시 거짓으로 초기화되도록 두었습니다.
그리고 부가적으로 실행하고 중지하고 다시 실행하고를 반복하다 보니 이전 실행물에 새로운 실행 결과가 덧입힌 것처럼 나오길래
실행 후에 Clear 버튼을 통해 실행 출력물을 지울 수 있는 기능도 추가해 보았습니다.
고2이고, PR을 써본 경험이 별로 없어서 서투를 수 있어요 ㅠ
재미있는 언어 개발해주셔서 감사드립니다.