Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 179 Bytes

8 kyu - Basic variable assignment.md

File metadata and controls

9 lines (8 loc) · 179 Bytes

Task

This code should store "codewa.rs" as a variable called "name" but it's not working. Can you figure out why?

My solution

a = "code"
b = "wa.rs"
name = a + b