mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
433da1fc04
They pass fine.
9 lines
159 B
Python
Executable File
9 lines
159 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import json
|
|
|
|
# Try to decode line in order to ensure it is a valid JSON document
|
|
for line in sys.stdin:
|
|
json.loads(line)
|