-
Notifications
You must be signed in to change notification settings - Fork 102
Open
Description
It will be easier for users from C/C++ to use type hint of Python if Bython supports the conversion from C-style type declaration to Python type hint. For example:
C-style type declaration:
int add(int x, int y) {
return x + y;
}
Python type hint:
def add(x: int, y: int) -> int:
return x + y
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels