You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.2 KiB

## Introduction
### Instructions
#### 1- get-ready
5 years ago
Create in your `github account` the repository named `piscine-go`.
Once created, clone that repository on your desktop.
5 years ago
If your `github username` was `kigiri` this is the command that will need to be used :
`git clone https://github.com/kigiri/piscine-go`
This command needs to be adapted with **your own github username**.
5 years ago
This repository will be the folder where all the exercices must be uploaded.
#### 2- set
5 years ago
Once the repository is created, write your first shell program called `hello.sh`
5 years ago
When executed this program must print `Hello {username}!`
5 years ago
Where `{username}` is your `github username`
##### Usage
If the `{username}` is `kigiri` :
```console
user@host:~/piscine-go$ ./hello.sh
Hello kigiri!
user@host:~/piscine-go$
```
#### 3- go-say-hello
5 years ago
After that the `hello.sh` is executing correctly, it needs to be uploaded to the repository with the following commands :
1. `git add hello.sh`
2. `git commit -m "My very first commit"`
3. `git push origin master`
5 years ago
Once these steps are applied, the file can now be submitted for grading on the platform by clicking on the `submit` button.
This action will run the tests on your submitted `hello.sh` file.