Normal Mode
J
Join line below onto this one
J → 'a' + ' ' + 'b'
1
2
3
4
def greet(name):
msg = "hello, " + name
print(msg)
return msg
-- NORMAL --
Free practice — click the editor, then type. Try
J yourself.Join line below onto this one
J yourself.