Lines starting with > are commands, the other lines are messages from rubyk.
# Welcome to rubyk !
#
> v => p
# /v ? /p
> v = Value(4)
# <Value:/v value:4>
> p = Print(prefix:'yoba')
# <Print:/p prefix:"yoba">
# /v/out/value => /p/in/print
> v/value(7)
yoba: 7
# 7
> v/value
yoba: 7
# 7
> v || p
# /v/out/value || /p/in/print
> v/value
# 7
> q
#
# Bye...
What this does is:
v => p.
comments