cue.type
Lines typed in character by character on the timeline — the code environment’s own verb. It wraps lines chunks: in: says when the typing starts, speed: is characters per second (the window’s length is the text’s length over the speed), and out: runs the same clock backwards, deleting from the end like a backspace. A caret mark rides the line being typed, and that line carries a wash while the window is open.
#Attributes
#Allowed content
#Allowed in
#Examples
cue.type{
lines{
return message
}(
indent: 1
)
}(
in: 1
speed: 30
)cue.type{
lines{
print("draft")
}
}(
in: 1
out: 2
)