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
it would be awesome to use if statement without creating a whole block, for example
set number score to 82
set str grade to "A" if score >= 90 else "B" if score >= 80 else "C"
print(grade)
set number gold to 5
print(f"you can afford it" if gold >= 10 else f"need {10 - gold} more gold")
many language had this feature even python so why doesnt cuffscript have one?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
it would be awesome to use if statement without creating a whole block, for example
many language had this feature even python so why doesnt cuffscript have one?
All reactions