1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/d/printer.d
2015-12-02 15:53:02 -05:00

7 lines
100 B
D

import types;
string pr_str(MalType obj, bool readable = true)
{
return obj.print(readable);
}