haskell
string1 = "hello"
string2 = "world"
greeting = string1 ++ " " ++ string2
v45 = 45
zebra = show v45
main = putStrLn (zebra ++ " " ++ greeting)
INFO
string1 = "hello"
string2 = "world"
greeting = string1 ++ " " ++ string2
v45 = 45
zebra = show v45
main = putStrLn (zebra ++ " " ++ greeting)