packages feed

ychr-0.1.0.0: libraries/meta.chr

:- module(meta, [
    fun print/1,
    fun read_term_from_string/1,
    fun write_term_to_string/1,
    fun write_store_to_list/0,
    fun print_store/0
]).

:- function
    (print(any) -> any),
    (print_store() -> any),
    (read_term_from_string(string) -> any),
    (write_term_to_string(any) -> string),
    (write_store_to_list() -> list(any)).

print(X) -> host:print(X).

write_term_to_string(T) -> host:write_term_to_string(T).

read_term_from_string(S) -> host:read_term_from_string(S).

write_store_to_list -> host:write_store_to_list.

print_store -> host:print_store.