JanetDocsPlaygroundI'm feeling luckyGitHub sign in

xprint



    cfunction
    src/core/io.c on line 521, column 1

    (xprint to & xs)

    Print to a file or other value explicitly (no dynamic bindings) 
    with a trailing newline character. The value to print to is the 
    first argument, and is otherwise the same as `print`. Returns nil.


1 exampleSign in to add an example
Loading...
(def b @"")
(xprint b "HOHOHO")
# => nil
b
# => @"HOHOHO\n"
pepePlayground