Hello World
Declare a contract called HelloWorld
.
Initialize a greet
variable to “Hello, World!”
Variables must always be initialized in the init
function.
cadence
access(all) contract HelloWorld {
access(all) let greet: String
init() {
self.greet = "Hello World!"
}
}