Swfit基础 常量和变量

  1. 常量标识符let
    定义一个常量 let num = 10

  2. 变量标识符var
    定义一个变量 var a = "hello"
    a = "Hello World"

你可能感兴趣的:(Swfit基础 常量和变量)