console :: TermMoveFoward :: defaultinit
# ANSI/VT100 code to move the cursor forward by `magnitude` columns (CUF).
class TermMoveFoward
super TermDirectionalMove
# Move by the specified number of cells.
init by(magnitude: Int) do self.magnitude = magnitude
redef fun code do return "C"
end
lib/console/console.nit:67,1--75,3