wenyan-lang/wenyan

提问:类似python中的input函数该怎么打呢

Kumono24 opened this issue · 3 comments

如题

yhr000 commented

用文渊阁的交互

+1,靜等回答

想实用些的话,不妨试试 木兰,支持基本py内置函数:

using randrange in random
想的 = randrange(100)
loop {
  猜的 = int(input("猜吧:"))
  if 猜的 > 想的 {
    println("大了")
  } elif 猜的 < 想的 {
    println("小了")
  } else {
    println("中了!")
    break
  }
}