roto 0.11.0

a statically-typed, compiled, embedded scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
source: tests/snapshot.rs
expression: string
input_file: tests/scripts/parse_errors/logical_chain.roto
---
Error: Parse error: `||` cannot be chained with `&&`
   ╭─[ tests/scripts/parse_errors/logical_chain.roto:2:19 ]
   │
 2 │     true && false || true && false;
   │                   ─┬  
   │                    ╰── cannot be chained with `&&`
   │ 
   │ Note: Try to disambiguate the expression with parentheses.
───╯