File size: 406 Bytes
557a17a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | %% la_strings.pl
use_module(library(pio)).
use_module(library(dcg/basics)).
open_s(File,Mode,Stream) :-
atom_string(File1,File),
open(File1,Mode,Stream),!.
string_atom(String,Atom) :-
atom_string(Atom,String),!.
phrase_from_file_s(string(Output), String) :-
atom_string(String1,String),
phrase_from_file(string(Output), String1),!.
writeln1(Term) :-
term_to_atom(Term,Atom),
writeln(Atom),!.
|