コード例 #1
0
def example_input():
    rio.output('ReadlineIO example input')
    rio.output('Follow-up output')
    rio.input('Give me a picture URL').then(print_image)
コード例 #2
0
ファイル: example.py プロジェクト: readlineio/readlineio
def example_input():
    rio.output('ReadlineIO example input')
    rio.output('Follow-up output')
    rio.input('Give me a picture URL').then(print_image)
コード例 #3
0
def print_name(name):
    rio.output('Hello ' + name + '!')
    rio.input('What is up?').then(print_okay)
コード例 #4
0
ファイル: example.py プロジェクト: readlineio/readlineio
def print_name(name):
    rio.output('Hello ' + name + '!')
    rio.input('What is up?').then(print_okay)