You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from lpython import i32
def main0(i: i32):
x: i32
x = (2+3)*5+i
print(x)
if __name__ == "__main__":
main0(5)
This works with cpython, it will ignore the lpython.py.