https://github.com/benmiller3/practical_programs_website
Project page for hosting simple but very helpful programs
https://github.com/benmiller3/practical_programs_website
perl python ruby shell
Last synced: 2 months ago
JSON representation
Project page for hosting simple but very helpful programs
- Host: GitHub
- URL: https://github.com/benmiller3/practical_programs_website
- Owner: BenMiller3
- License: mit
- Created: 2018-01-16T05:29:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-16T05:38:35.000Z (over 8 years ago)
- Last Synced: 2025-06-04T10:49:26.365Z (about 1 year ago)
- Topics: perl, python, ruby, shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Welcome to Practical Programs
If you're looking for simple solutions and great software. Look no further.
### Blog
Will begin a technical blog very soon.
The basis for any python program
```python
import sys
import os
def main():
try:
arg = sys.argv[1]
except:
arg = input("Enter a program argument")
print("You've entered: " + str(arg) + "! :)")
if __name__ == '__main__':
main()
```
### Support or Contact
Contact me! :)