Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Can't use imported function if extern function defined (even if not exported) #34

Open
alinalihassan opened this issue May 1, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@alinalihassan
Copy link
Owner

It gives a weird bug where it says it doesn't find the function. Example:

# math.les
def extern sin(x: float) -> float

export def sin(x: float) -> float
    return sin(x)
# main.les
import math

math.sin(1.0)

It gives an error: Function sin not in current scope.

@alinalihassan alinalihassan added the bug Something isn't working label May 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant