Replies: 1 comment
-
There is only declaration shorthand for variables that are initialized to the same value, so the closest you could do is:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Well, this works in C:
int image_x = 20, image_y = 20, image_stretch = 0;
But in Adept, I have to rewrite it like this in order to have it compile:
Or is there a shorthand syntax that I don't know? Please correct me if I'm wrong.
Beta Was this translation helpful? Give feedback.
All reactions