{"tpkg":1,"name":"multipkg","version":"0.1.0","entry":"multipkg.tpr","files":[{"path":"multipkg.tpr","content":"// multipkg bundle entry — sibling import.\nimport \"greetings\";\n\nfunc say_full() {\n say_hello(\"Hamza\");\n say_goodbye(\"Hamza\");\n}\n"},{"path":"greetings.tpr","content":"// Sub-file inside the bundle. Plan 02 PR3 resolver patch lets the\n// bundle's main entry import this without an absolute path.\nfunc say_hello(str name) {\n print(\"hello, \" + name);\n}\n\nfunc say_goodbye(str name) {\n print(\"goodbye, \" + name);\n}\n"}]}