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

Allow multiple variable allocation inline with opcode and function calls #327

Open
MiranDMC opened this issue May 22, 2024 · 0 comments
Open
Labels
priority:p2 Medium priority scope:compiler type:feature New feature or request
Milestone

Comments

@MiranDMC
Copy link

MiranDMC commented May 22, 2024

Currently it is possible:
int health = GetHealth()
but following code will produce error:
float x, y, z = GetPos()

It forces user to write:

float x, y, z
x, y, z = get_char_coordinates $scplayer
@x87 x87 added this to the v4.1.0 milestone Aug 7, 2024
@x87 x87 added type:feature New feature or request priority:p2 Medium priority scope:compiler labels Aug 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority:p2 Medium priority scope:compiler type:feature New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants