An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

Hello World CLI
===============

[![Build Status](https://travis-ci.org/fpoli/rust-hello-cli.svg?branch=master)](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
```