commit 8256b8d166152314463cd9dc63069c875c6f373b
parent fb75c59dac0f35e3eed34c1cd8a46c5eb62b933c
Author: Adam <[email protected]>
Date: Tue, 3 Dec 2019 08:34:22 -0600
Update README.MD
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.MD b/README.MD
@@ -81,7 +81,7 @@ abcdef@3 abc
## Randomization
-Enclosing values (lowercase letter, uppercase letter, or exact voltage) in curly braces {} will randomly select one of the values with equal probability. For example, `{ab}` will choose either `a` or `b` at each clock step. `{g<2.55>}` will output either the value of knob `g` or `2.55` volts with equal probability.
+Enclosing values (lowercase letter, uppercase letter, or exact voltage) in curly braces {} will randomly select one of the values with equal probability. For example, `{ab}` will choose either `a` or `b` at each clock step. `{g<2.55>}` will output either the value of knob `g` or `2.55` volts with equal probability. `{}` will choose one of the 26 knobs `a` thru `z`.
## Square Bracket Expansion
@@ -115,6 +115,7 @@ All of the following are valid I Love Cookies programs:
ab(cd)
def@10
[abc,de]@6
+{}@8,arphald
~~~~