• This project
    • Loading...
  • Sign in

마수현 / ossw-assignment2

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ossw-assignment2
  • echo.py
  • Ma Suhyeon's avatar
    Implement exit · f98a0b46
    f98a0b46 Browse Files
    Ma Suhyeon authored 2020-09-25 23:12:15 +0900
echo.py 85 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
while True:
    line = input()

    if line == 'exit':
        break

    print(line)