python_fn_8 - 8BitsCoding/RobotMentor GitHub Wiki

python

if True:
    print("code1")
    print("code2")
print("code3")
input = 33
real_egoing = 11
real_k8805 = "ab"
if real_egoing == input:
  print("Hello!, egoing")
elif real_k8805 == input:
  print("Hello!, k8805")
else:
  print("Who are you?")

Who are you?


ruby

if true
  puts("code1")
  puts("code2")
end
puts("code3")
input = 33
real_egoing = 11
real_k8805 = "ab"
if real_egoing == input
  puts("Hello!, egoing")
elsif real_k8805 == input
  puts("Hello!, k8805")
else
  puts("Who are you?")
end

Who are you?