mirror of
https://github.com/rxrbln/t2sde.git
synced 2025-05-09 04:31:26 +08:00
12 lines
241 B
Python
12 lines
241 B
Python
# --- T2-COPYRIGHT-BEGIN ---
|
|
# t2/misc/archive/hello.py
|
|
# Copyright (C) 2025 The T2 SDE Project
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# --- T2-COPYRIGHT-END ---
|
|
|
|
def main():
|
|
print("Hello from Python")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|