Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kkweon/questionnaire

Interactive CLI builder
https://github.com/kkweon/questionnaire

Last synced: 24 days ago
JSON representation

Interactive CLI builder

Awesome Lists containing this project

README

        

# Questionnaire [WIP]

Motivated by [inquirer.js](https://github.com/SBoudrias/Inquirer.js/)

## Example

```rust
fn main() {
prompt("what's your name?")
.and_then(|name| {
// do something with name ...
ok(())
})
.wait();
}
```