[lang-ref] 定数 ( swift )
@Test func assignConstant() {
// let
let x = 1
#expect(x == 1)
// x = 2 // compile error
// let x = 2 // compile error
}
@Test func assignConstant() {
// let
let x = 1
#expect(x == 1)
// x = 2 // compile error
// let x = 2 // compile error
}