# --- 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()