module Novika::Frontend

Extended Modules

Defined in:

common.cr

Instance Method Summary

Instance Method Detail

def err(message, io = STDERR) #

Appends a "sorry" message to io


[View source]
def errln(message, io = STDERR) #

Calls #err, and appends a newline, both using with io.


[View source]
def note(message, io = STDOUT) #

Appends a "note" message to io.


[View source]
def noteln(message, io = STDOUT) #

Calls #note, and appends a newline, both using with io.


[View source]
def ok(message, io = STDOUT) #

Appends an "ok" message to io.


[View source]
def okln(message, io = STDOUT) #

Calls #ok, and appends a newline, both using with io.


[View source]
def wait(message, io = STDOUT) #

Appends a "wait" message to io.


[View source]
def wait(msg, *, ok okmsg, &) #

Issues a #wait message msg, yields, then follows with an OK message okmsg.


[View source]
def waitln(message, io = STDOUT) #

Calls #wait, and appends a newline, both using with io.


[View source]