-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
There are three four proposals here.
Proposal 1: Multiple statements in conds.
var asdf = 1
cond asdf -> [
var abcd = 1
var other = 110
]/[
var abcd = 0
]
out abcd
Output: 1
Proposal 2: @ working for multiple chars at once, something like this:
out @(10001,100111,1111010)
(This can be extended to all prefix built-in commands).
Proposal 3: Null values for variables.
var x
# x is now equal to an empty binary string (or represented as [] in processing code)
Proposal 4: Boolean command.
Uses the ? symbol (prefix).
out ?10011
Output: 1