mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
7 lines
100 B
D
7 lines
100 B
D
import types;
|
|
|
|
string pr_str(MalType obj, bool readable = true)
|
|
{
|
|
return obj.print(readable);
|
|
}
|