diff --git a/Test_Coding_Python/main.py b/Test_Coding_Python/main.py new file mode 100644 index 0000000..343ecca --- /dev/null +++ b/Test_Coding_Python/main.py @@ -0,0 +1,5 @@ +def print_hi(name): + print(f'Hi, {name}') + +if __name__ == '__main__': + print_hi('PyCharm') \ No newline at end of file diff --git a/Test_Coding_Swift/Test_Coding_Swift/main.swift b/Test_Coding_Swift/Test_Coding_Swift/main.swift new file mode 100644 index 0000000..28b83c9 --- /dev/null +++ b/Test_Coding_Swift/Test_Coding_Swift/main.swift @@ -0,0 +1,11 @@ +// +// main.swift +// Test_Coding_Swift +// +// Created by TA9 on 10/16/25. +// + +import Foundation + +print("Hello, World!") +