Example #1
0
 String PRINT(MalVal exp)
 {
     return(Printer.pr_str(exp, true));
 }
Example #2
0
 internal static string JoinMalTypes(this LList <MalType>?items, string separator = " ") =>
 items.Select(mal => Printer.PrintStr(mal)).Join(separator);