diff --git a/src/App.js b/src/App.js index c38b30d5b2..ed8043f5b9 100644 --- a/src/App.js +++ b/src/App.js @@ -1,5 +1,13 @@ +import { Console } from "@woowacourse/mission-utils"; + class App { - async play() {} + async play() { + let money = await this.inputMoney(); + } + async inputMoney() { + let money = await Console.readLineSync; + ("구입할 로또 금액을 입력해주세요"); + } } export default App;