diff --git a/README-test.md b/README-test.md new file mode 100644 index 0000000..dabedf4 --- /dev/null +++ b/README-test.md @@ -0,0 +1,5 @@ +# Test Project + +This is a test project created by Claude to test multi-commit pull requests. + +Created at: 2025-10-31 03:33:48 UTC diff --git a/test-script.py b/test-script.py new file mode 100644 index 0000000..5d76dcc --- /dev/null +++ b/test-script.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +def hello(): + print("Hello from Claude multi-commit test!") + +if __name__ == "__main__": + hello()