https://github.com/fpoli/rust-hello-cli
Prints a nice 'Hello World!' message
https://github.com/fpoli/rust-hello-cli
Last synced: about 1 year ago
JSON representation
Prints a nice 'Hello World!' message
- Host: GitHub
- URL: https://github.com/fpoli/rust-hello-cli
- Owner: fpoli
- License: mit
- Created: 2017-10-02T10:15:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-02T12:46:43.000Z (over 8 years ago)
- Last Synced: 2025-03-01T22:14:19.496Z (over 1 year ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Hello World CLI
===============
[](https://travis-ci.org/fpoli/rust-hello-cli)
Prints a nice 'Hello World!' message.
Install
-------
```
cargo install hello-cli
```
Examples
--------
```
$ hello
Hello World!
```
```
$ hello -n MyName
Hello MyName!
```
Usage
-----
```
USAGE:
hello [OPTIONS]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-n, --name Use name (default: World)
```
Testing
-------
```
cargo test
```