├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── close_pr.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── compound_interest.py └── simple-interest.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/close_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/.github/workflows/close_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/README.md -------------------------------------------------------------------------------- /compound_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/compound_interest.py -------------------------------------------------------------------------------- /simple-interest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-developer-skills-network/jbbmo-Introduction-to-Git-and-GitHub/HEAD/simple-interest.sh --------------------------------------------------------------------------------