doc: add concepts roadmap

This commit is contained in:
Artemy 2022-08-06 18:24:39 +03:00
parent 2fa057c5e7
commit 86ba8686b1
2 changed files with 8 additions and 4 deletions

View file

@ -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

View file

@ -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"],
},
]
```