Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/walkersumida/randomizer
https://github.com/walkersumida/randomizer
go golang
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/walkersumida/randomizer
- Owner: walkersumida
- Created: 2021-09-08T13:34:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-11T12:08:05.000Z (over 3 years ago)
- Last Synced: 2024-10-23T02:12:23.549Z (2 months ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Randomizer
## Getting Started
### Download```sh
go get -u github.com/walkersumida/randomizer
```### Usage
```golang
import "github.com/walkersumida/randomizer"fmt.Println(randomizer.Run("a,b,c,d"))
// => "b"fmt.Println(randomizer.Run("10,20,30,40,50"))
// => "40"
```