* Add ABS, Cadence, Cone, daScript, dg, oK, Pikelet!, TopShell . * Fix author name of workflow * Add Asteria and Tabloid * Add Asteria and Tabloid * Add One and Qi * Add Retina * Add Charly, Dictu, Millfork, Minecraft Script, Mokkosu, Morloc, WurstScript * Add うんちく and Mind * Add Sawa * Update Mokkosu.mok * Update Asteria * Add Xtal Co-authored-by: gnuhead-chieb <gnuhead-chieb@users.noreply.github.com>
11 lines
204 B
Plaintext
11 lines
204 B
Plaintext
access(all) contract HelloWorld {
|
|
access(all) let greeting: String
|
|
init() {
|
|
self.greeting = "Hello World"
|
|
}
|
|
|
|
access(all) fun hello(): String {
|
|
return self.greeting
|
|
}
|
|
}
|