outs statement
Description
outs(snStore)
The outs statement simply copies the store snStore into the position in which it has been inserted. Most of the time this is used only in stores but it can be used in the context and output as well.
Warning: when using outs() in the context, the characters in the outs are included in index counts. See the example.
Examples
store(conskeys) "BCDFGHJKLMNPQRSTVWXYZ" store(vowelkeys) "AEIOU" store(allkeys) outs(conskeys) outs(vowelkeys) c using outs in the context outs(vowelkeys) + any(conskeys) > index(conskeys, 6)