# 004: Strings & Templates # Working with text firstname = "Alex" lastname = "Chen" # String concatenation fullname = firstname + " " + lastname # Template strings (preferred) greeting = "Hello, {firstname} {lastname}!" # Multi-line strings bio = """ Alex is a developer who loves programming in Lucidia """ show fullname show greeting show bio