Add ABS, Cadence, Cone, daScript, dg, oK, Pikelet!, TopShell, Asteria, Tabloid, One, Qi, Retina, Charly, Dictu, Millfork, Minecraft Script, Mokkosu, Morloc, WurstScript, うんちく, Mind, Sawa, Xtal (#1434)

* 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>
This commit is contained in:
gnuhead-chieb
2022-12-28 02:09:08 +09:00
committed by GitHub
parent 7a59735e55
commit aeb09c6ced
26 changed files with 85 additions and 1 deletions

10
c/Cadence.cdc Normal file
View File

@@ -0,0 +1,10 @@
access(all) contract HelloWorld {
access(all) let greeting: String
init() {
self.greeting = "Hello World"
}
access(all) fun hello(): String {
return self.greeting
}
}

1
c/Charly.ch Normal file
View File

@@ -0,0 +1 @@
print("Hello World")

4
c/Cone.cone Normal file
View File

@@ -0,0 +1,4 @@
import stdio::*
fn main():
print <- "Hello World"