diff --git a/README.md b/README.md index a76039e4..f37cdab0 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ Hello, World! ============= -Hello world in every programming language. +> Inspired by [The Hello World Collection](https://helloworldcollection.github.io/). -Inspired by [The Hello World Collection](https://helloworldcollection.github.io/) +#### Hello world in every programming language. As I watch the collection expand, this project has blown up more than I ever thought possible. Thanks to everyone who continues to contribute, new languages are created every day! Make sure to see CONTRIBUTING.md for instructions on contributing to the project! -Spin-Off project smartly suggested and implemented by @zenware -Meet [FizzBuzz](https://github.com/zenware/FizzBuzz) the evolution of [hello-world](https://github.com/leachim6/hello-world) +Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): +Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-world](https://github.com/leachim6/hello-world). ### This repository currently contains "Hello World" programs in the following languages: * [0815](%23/0815.0815) @@ -348,6 +348,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz) the evolution of [hello-wor * [Pawn](p/pawn.p) * [Pb](p/pb.pwr) * [Pbwin](p/pbwin.bas) +* [Pebble](p/pebble.c) * [Perl](p/perl.cgi) * [Perl](p/perl.pl) * [Perl6](p/perl6.p6) @@ -436,6 +437,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz) the evolution of [hello-wor * [Stanza](s/stanza.stanza) * [Streem](s/streem.strm) * [Stuck](s/stuck.stuck) +* [Stuck 0Byte](s/stuck_0byte.stuck) * [Subleq](s/subleq.sq) * [Supercollider](s/supercollider.sc) * [Svg](s/svg.svg) diff --git a/README_nolist.md b/README_nolist.md index 21216897..21814e92 100644 --- a/README_nolist.md +++ b/README_nolist.md @@ -1,14 +1,14 @@ Hello, World! ============= -Hello world in every programming language. +> Inspired by [The Hello World Collection](https://helloworldcollection.github.io/). -Inspired by [The Hello World Collection](https://helloworldcollection.github.io/) +#### Hello world in every programming language. As I watch the collection expand, this project has blown up more than I ever thought possible. Thanks to everyone who continues to contribute, new languages are created every day! Make sure to see CONTRIBUTING.md for instructions on contributing to the project! -Spin-Off project smartly suggested and implemented by @zenware -Meet [FizzBuzz](https://github.com/zenware/FizzBuzz) the evolution of [hello-world](https://github.com/leachim6/hello-world) +Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): +Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-world](https://github.com/leachim6/hello-world). diff --git a/list_langs.py b/list_langs.py index a891a79e..d4aa133d 100755 --- a/list_langs.py +++ b/list_langs.py @@ -19,6 +19,6 @@ for dirname in sorted(os.listdir('.')): for filename in sorted(os.listdir(dirname), key=lambda s: s.lower()): if os.path.isfile(os.path.join(dirname, filename)): lang = os.path.splitext(filename)[0].replace('-', ' ').replace('_', ' ').title() - readme.write('* [{}]({})\n'.format(lang, quote(os.path.join(dirname, filename)))) # Cut trailing space + readme.write('* [{}]({})\n'.format(lang, quote(os.path.join(dirname, filename)))) readme.close()