mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
10 lines
116 B
Python
Executable File
10 lines
116 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
def main():
|
|
if True:
|
|
print("Hello, World!")
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|