0

why there is an error

i = 5 def hello() print i end hello() #why this doesn't work? is "i" not a global variable?

13th Sep 2020, 12:24 PM
Zhengrong Yan
Zhengrong Yan - avatar
1 Odpowiedź
+ 2
Use parameters and arguments i = 5 def hello(i) puts i end hello(i)
13th Sep 2020, 2:29 PM
AKSHAY🇮🇳
AKSHAY🇮🇳 - avatar