-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add intallation instructions to README.md
Signed-off-by: Dušan Mitrović <[email protected]>
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,15 @@ type ( | |
|
||
This library attempts to make it simple to extract this information out of a string representation of this number. | ||
|
||
## Installation | ||
Make sure you have Go installed ([download here](https://go.dev/dl/)). | ||
|
||
Initialize your project in a directory of your choice and run `go mod init github.com/your-username/your-repo-name`. | ||
Then install the package with the `go get` command: | ||
```shell | ||
go get -u github.com/dusnm/[email protected] | ||
``` | ||
|
||
## Basic usage | ||
```go | ||
package main | ||
|