68 lines
1.9 KiB
Markdown
68 lines
1.9 KiB
Markdown
|
# Hello World
|
||
|
|
||
|
Welcome to Hello World on Exercism's Bash Track.
|
||
|
If you need help running the tests or submitting your code, check out `HELP.md`.
|
||
|
|
||
|
## Instructions
|
||
|
|
||
|
The classical introductory exercise.
|
||
|
Just say "Hello, World!".
|
||
|
|
||
|
["Hello, World!"][hello-world] is the traditional first program for beginning programming in a new language or environment.
|
||
|
|
||
|
The objectives are simple:
|
||
|
|
||
|
- Modify the provided code so that it produces the string "Hello, World!".
|
||
|
- Run the test suite and make sure that it succeeds.
|
||
|
- Submit your solution and check it at the website.
|
||
|
|
||
|
If everything goes well, you will be ready to fetch your first real exercise.
|
||
|
|
||
|
[hello-world]: https://en.wikipedia.org/wiki/%22Hello,_world!%22_program
|
||
|
|
||
|
## Welcome to Bash!
|
||
|
|
||
|
Unlike many other languages here, bash is a bit of a special snowflake.
|
||
|
If you are on a Mac or other unix-y platform, you almost definitely
|
||
|
already have bash. In fact, anything you type into the terminal is
|
||
|
likely going through bash.
|
||
|
|
||
|
The downside to this is that there isn't much of a development
|
||
|
ecosystem around bash like there is for other languages, and there are
|
||
|
multiple versions of bash that can be frustratingly incompatible. Luckily
|
||
|
we shouldn't hit those differences for these basic examples, and if you
|
||
|
can get the tests to pass on your machine, we are doing great.
|
||
|
|
||
|
### Installation
|
||
|
|
||
|
Please follow [these instructions](https://exercism.org/docs/tracks/bash/installation) to install `bash` on your system.
|
||
|
|
||
|
### Testing
|
||
|
|
||
|
Please follow [these instructions](https://exercism.org/docs/tracks/bash/tests) to learn more about testing with `bash`.
|
||
|
|
||
|
## Source
|
||
|
|
||
|
### Contributed to by
|
||
|
|
||
|
- @adelcambre
|
||
|
- @bkhl
|
||
|
- @budmc29
|
||
|
- @coreygo
|
||
|
- @glennj
|
||
|
- @guygastineau
|
||
|
- @IsaacG
|
||
|
- @kenden
|
||
|
- @kotp
|
||
|
- @kytrinyx
|
||
|
- @MattLewin
|
||
|
- @platinumthinker
|
||
|
- @quartzinquartz
|
||
|
- @rootulp
|
||
|
- @sjwarner-bp
|
||
|
- @Smarticles101
|
||
|
- @ZapAnton
|
||
|
|
||
|
### Based on
|
||
|
|
||
|
This is an exercise to introduce users to using Exercism - https://en.wikipedia.org/wiki/%22Hello,_world!%22_program
|