dust/std/json.ds
2024-06-24 13:48:31 -04:00

6 lines
79 B
Plaintext

json = {
parse = fn |T| (input: str) -> T {
__JSON_PARSE__::<T>(input)
}
}