Skip to content

Instantly share code, notes, and snippets.

@lockdef
Created February 9, 2021 10:03
Show Gist options
  • Save lockdef/50f066ef4039bdb648526a56394b47ed to your computer and use it in GitHub Desktop.
Save lockdef/50f066ef4039bdb648526a56394b47ed to your computer and use it in GitHub Desktop.
コードをVSCodeのSnippetのBodyに変換する、exitが入力されるまで読み込む
snippet = []
while True:
s = input()
if s == "exit":
break
snippet.append(s)
for s in snippet:
print(f'"{s}",')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment