1
0
mirror of https://github.com/exaloop/codon.git synced 2025-06-03 15:03:52 +08:00
codon/test/app/input.codon

8 lines
130 B
Python
Raw Normal View History

2024-08-05 17:31:45 -04:00
print(input("input: "), end=',')
print(input(), end=',')
print(input(), end=',')
try:
input()
except EOFError:
print('X')