add script examples to README

This commit is contained in:
markfisher
2016-09-22 14:20:05 -04:00
parent 051bda815d
commit 775020c665

View File

@@ -18,4 +18,14 @@ Example REST Application:
--function.code="f -> f.map(s -> s.toString().toUpperCase())"
```
Using Scripts:
```
./stream.fun -i words -o uppercaseWords -f "f->f.map(s->s.toString().toUpperCase())"
```
```
./web.fun -p "/words" -f "f->f.map(s->s.toString().toUpperCase())"
```
(more docs soon)