first commit

This commit is contained in:
2021-08-29 00:05:19 +08:00
commit 6574151a51
45 changed files with 13483 additions and 0 deletions

19
templates/dynamic/ext/py Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
cat<<EOF
#!/usr/bin/python3
# -*- coding:utf-8 -*-
#=========================================
# Filename : $1
# Author : Colben
# Create : `date +"%F %R"`
#=========================================
def main():
return
if '__main__' == __name__:
main()
EOF