[mod] example:logic

This commit is contained in:
Christian Fraß 2022-03-20 21:48:13 +01:00
parent 0d09f8ff24
commit b848eeecd6

View file

@ -26,7 +26,7 @@ def main():
content = _sys.stdin.read()
node = _json.loads(content)
value = evaluate(node)
_sys.stdout.write(str(value) + "\n")
_sys.stdout.write(_json.dumps(value) + "\n")
main()