在我学习的过程中,我正在运行一些教程和 github ruby 程序。当我在终端中运行一个程序时,它要求我输入一些东西,每行一个。我知道这很愚蠢,但我怎么告诉它我已经在终端中输入了东西?
puts "Please input a list of stocks, one per line"
LifeCycleReportItem.setup
report = Report.new
tickers = Array.new
STDIN.readlines.each { | ticker |
tickers.push(ticker.chomp)
}
这是终端:
Please input a list of stocks, one per line
GOOG
AAPL
我怎么告诉它我已经完成了?