module Novika::Frontend
Extended Modules
Defined in:
common.crInstance Method Summary
-
#err(message, io = STDERR)
Appends a "sorry" message to io
-
#errln(message, io = STDERR)
Calls
#err
, and appends a newline, both using with io. -
#note(message, io = STDOUT)
Appends a "note" message to io.
-
#noteln(message, io = STDOUT)
Calls
#note
, and appends a newline, both using with io. -
#ok(message, io = STDOUT)
Appends an "ok" message to io.
-
#okln(message, io = STDOUT)
Calls
#ok
, and appends a newline, both using with io. -
#wait(message, io = STDOUT)
Appends a "wait" message to io.
-
#wait(msg, *, ok okmsg, &)
Issues a
#wait
message msg, yields, then follows with an OK message okmsg. -
#waitln(message, io = STDOUT)
Calls
#wait
, and appends a newline, both using with io.