Skip to content

Latest commit

 

History

History
executable file
·
21 lines (16 loc) · 337 Bytes

README.md

File metadata and controls

executable file
·
21 lines (16 loc) · 337 Bytes

仕様

stdinで得た値をString型で返します。

get user's input. return String.

how to get input without message.

let input = get_input("");

how to get input with message.

let input = get_input("please title>");
// 👇console
please title>foo 👈foo is user's input.
// input == "foo"