Skip to content

Instantly share code, notes, and snippets.

@GeekTree0101
Last active December 19, 2019 02:47
Show Gist options
  • Save GeekTree0101/71add0cc8a5a488a264a13a7587d88dd to your computer and use it in GitHub Desktop.
Save GeekTree0101/71add0cc8a5a488a264a13a7587d88dd to your computer and use it in GitHub Desktop.
leah
struct A {
let p: Value?
let b: Value
}
_ = A(p: nil, b: Value())
sturct A {
var p: Value?
var b: Value
}
_ = A(b: Value()) // OK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment