https://github.com/walkersumida/randomizer
https://github.com/walkersumida/randomizer
go golang
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/walkersumida/randomizer
- Owner: walkersumida
- Created: 2021-09-08T13:34:17.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-11T12:08:05.000Z (almost 4 years ago)
- Last Synced: 2025-02-04T19:50:02.585Z (5 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"
```