Files
dotfiles/.config/VSCodium/User/snippets/python.json
T
2025-10-28 22:43:26 -04:00

12 lines
165 B
JSON

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