Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 415 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 415 Bytes

Notcurses.jl

Notcurses.jl is a Julia package that provides a wrapper over notcurses, the most blingful TUI library.

Usage

import Notcurses as N

nc = N.NotcursesObject(; opts = N.Options(; flags = UInt64(N.OptionsFlags.CLI_MODE | N.OptionsFlags.SUPPRESS_BANNERS)))
plane = N.stdplane(nc)
N.putstrln(plane, "\nhello world!")
N.render(nc)
N.stop(nc)