Files
dotfiles/.config/VSCodium/User/snippets/python.json
T
2024-10-05 14:12:02 -04:00

12 lines
166 B
JSON

{
"Creates a new main function.": {
"prefix": "newmain",
"body": [
"def main():",
"\t$1",
"",
"if __name__ == \"__main__\":",
"\tmain()"
]
}
}