From 86ba8686b16a89665cffdc5ab63494f20cdccdd7 Mon Sep 17 00:00:00 2001 From: Artemy Date: Sat, 6 Aug 2022 18:24:39 +0300 Subject: [PATCH] doc: add concepts roadmap --- ROADMAP.md | 4 ++++ doc/main.md | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index 34d342a..5e27bde 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -6,7 +6,11 @@ - [ ] parallel tasks `{parallel:[..tasks]}` - [ ] types conversion - [ ] methods for arrays +- [ ] methods for strings +- [ ] methods for objects - [ ] writing objects to a variable - [x] yaml support? +- [ ] command execution function +- [ ] function for random and something else diff --git a/doc/main.md b/doc/main.md index 5dcef44..a92cbfd 100644 --- a/doc/main.md +++ b/doc/main.md @@ -6,13 +6,13 @@ ```json5 [ - "Just string in array", - ["array", "of", "strings"], + "Just string in array", //equally println: "Just string in array" + ["array", "of", "strings"], // equally println: ["in Function"] { - print: ["Function"], + print: ["in Function"], }, { - println: ["Function"], + println: ["in Function"], }, ] ```