summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/pure/compiled_switch.py
blob: 47d62a3e64d88a2cdcb690fbbba7f7cd1f841883 (plain)
1
2
3
4
5
6
import cython

if cython.compiled:
    print("Yep, I'm compiled.")
else:
    print("Just a lowly interpreted script.")