# Full Package Example Explain what the package is doing here. # Usage Example: ## Usage sub category Sub category example: ## Usage sub category 2 Sub category 2 example: ```python print('do the thing') ``` # Dev - stuff here - more stuff ```javascript console.log('yo'); ``` - stuff here ```TypeScript import {doThing} from 'full-package-example'; async function main() { // used to test a previous bug where package import replacements were too loose const myFiles = ['path-to-my-test-file.js', 'path-to-another-file.js']; const results = myFiles.forEach(() => doThing()); } main(); ``` How to do dev and testing and stuff.