From 775020c6656509ce6a80b393591252ca913234cb Mon Sep 17 00:00:00 2001 From: markfisher Date: Thu, 22 Sep 2016 14:20:05 -0400 Subject: [PATCH] add script examples to README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 22abd44a8..2aa125d94 100644 --- a/README.md +++ b/README.md @@ -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)