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