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


def errln(message, io = STDERR) #

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


def note(message, io = STDOUT) #

Appends a "note" message to io.


def noteln(message, io = STDOUT) #

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


def ok(message, io = STDOUT) #

Appends an "ok" message to io.


def okln(message, io = STDOUT) #

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


def wait(message, io = STDOUT) #

Appends a "wait" message to io.


def wait(msg, *, ok okmsg, &) #

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


def waitln(message, io = STDOUT) #

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