dust/std/json.ds

6 lines
81 B
Plaintext
Raw Normal View History

2024-06-04 18:47:15 +00:00
json = {
2024-06-19 01:44:22 +00:00
parse = fn |T| (input: str) -> T {
2024-06-24 12:17:06 +00:00
__JSON_PARSE__::(T)::(input)
2024-06-04 18:47:15 +00:00
}
}