ithon/examples/typechecker.it
2024-11-30 10:29:08 -05:00

4 lines
No EOL
165 B
Text

import typecheck as tc
tc.checktype('hello', int | str) |> print
tc.checktype(0xdeadbeef, int | str) |> print
tc.checktype(['hello', 0xdeadbeef], int | str) |> print