rtfeldman/console-print - version: 1.0.1

for more information visit the package's GitHub page

Package contains the following modules:

console-print

Print formatted text to the console using ANSI escape sequences.

import Console exposing (dark, green)


-- "Hello, dark green world!" with "dark green" in dark green
greeting : String
greeting =
    "Hello, " ++ (dark << green) "dark green" ++ " world!"

Running Examples

$ cd example
$ elm-make --output=elm.js Main.elm && node run.js