https://github.com/bsamseth/pages-test
Testing out pages.
https://github.com/bsamseth/pages-test
Last synced: 3 months ago
JSON representation
Testing out pages.
- Host: GitHub
- URL: https://github.com/bsamseth/pages-test
- Owner: bsamseth
- License: mit
- Created: 2017-02-28T19:53:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-28T20:12:52.000Z (over 8 years ago)
- Last Synced: 2025-02-06T12:15:00.219Z (5 months ago)
- Homepage: https://bsamseth.github.io/pages-test/
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pages-test
This repository doesn't really contain anything, I just wanted to test out the Github Pages functionality.
Here is a link to the [license](LICENSE), since I have little else in this repo to link to.
## Here is a level 2 heading
### And look, a level 3 heading as well!
This one has some code:
``` python
def print(*words):
for word in words:
print(word, end='')
print()
print('Hello', ', ', 'World!')
```