myName and myname are treated as two distinct variables.
To set a variable to a value, write the variable name followed by whitespace and the value you want to assign:
Types
Standard automatically infers and sets the type of a variable based on the value you assign. Once a type is established, the variable must maintain that type throughout its lifetime. The following built-in types are supported:Null Types and Initialization
You can set a variable to null by following the variable name withnull. You can also declare a variable on its own line with no assigned value — Standard will automatically initialize it to null. The variable inherits a concrete type the first time you assign it a non-null value:
username starts as null, receives its type when the user provides input, and is then printed to the console.