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
At the moment, 10 is printed which implies there are two tokens (each taking up five numbers in the array) with the RUN instruction as one token and ${var:+word} as one token. We should split the one variable token into five separate tokens like so:
${var (variable)
: (operator)
+ (modifier)
word (parameter)
} (variable)
The text was updated successfully, but these errors were encountered:
RUN ${var:+word}
At the moment,
10
is printed which implies there are two tokens (each taking up five numbers in the array) with theRUN
instruction as one token and${var:+word}
as one token. We should split the one variable token into five separate tokens like so:${var
(variable):
(operator)+
(modifier)word
(parameter)}
(variable)The text was updated successfully, but these errors were encountered: