From aeb09c6ced9e2bebb28efa95c1fa51a0359d5aa8 Mon Sep 17 00:00:00 2001 From: gnuhead-chieb <41156994+gnuhead-chieb@users.noreply.github.com> Date: Wed, 28 Dec 2022 02:09:08 +0900 Subject: [PATCH] =?UTF-8?q?Add=20ABS,=20Cadence,=20Cone,=20daScript,=20dg,?= =?UTF-8?q?=20oK,=20Pikelet!,=20TopShell,=20Asteria,=20Tabloid,=20One,=20Q?= =?UTF-8?q?i,=20Retina,=20Charly,=20Dictu,=20Millfork,=20Minecraft=20Scrip?= =?UTF-8?q?t,=20Mokkosu,=20Morloc,=20WurstScript,=20=E3=81=86=E3=82=93?= =?UTF-8?q?=E3=81=A1=E3=81=8F,=20Mind,=20Sawa,=20Xtal=20(#1434)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- ...343\202\223\343\201\241\343\201\217.unchk" | 1 + .github/workflows/update_readme.yml | 8 ++++++ a/ABS.abs | 1 + a/Asteria | 1 + c/Cadence.cdc | 10 +++++++ c/Charly.ch | 1 + c/Cone.cone | 4 +++ d/Dictu.du | 1 + d/daScript.das | 3 +++ d/dg.dg | 1 + m/Millfork.mfk | 5 ++++ m/Mind.src | 2 ++ m/Minecraft Script.mcscript | 1 + m/Mokkosu.mok | 1 + m/Morloc.loc | 2 ++ o/One.one | 3 +++ o/oK.k | 1 + p/Pikelet!.pi | 1 + q/Qi.qi | 1 + r/Retina.ret | 1 + readme.md | 26 ++++++++++++++++++- "s/Sawa.\352\246\261\352\246\256" | 1 + t/Tabloid | 3 +++ t/TopShell | 1 + w/WurstScript.wurst | 5 ++++ x/Xtal.xtal | 1 + 26 files changed, 85 insertions(+), 1 deletion(-) create mode 100644 "#/\343\201\206\343\202\223\343\201\241\343\201\217.unchk" create mode 100644 a/ABS.abs create mode 100644 a/Asteria create mode 100644 c/Cadence.cdc create mode 100644 c/Charly.ch create mode 100644 c/Cone.cone create mode 100644 d/Dictu.du create mode 100644 d/daScript.das create mode 100644 d/dg.dg create mode 100644 m/Millfork.mfk create mode 100644 m/Mind.src create mode 100644 m/Minecraft Script.mcscript create mode 100644 m/Mokkosu.mok create mode 100644 m/Morloc.loc create mode 100644 o/One.one create mode 100644 o/oK.k create mode 100644 p/Pikelet!.pi create mode 100644 q/Qi.qi create mode 100644 r/Retina.ret create mode 100644 "s/Sawa.\352\246\261\352\246\256" create mode 100644 t/Tabloid create mode 100644 t/TopShell create mode 100644 w/WurstScript.wurst create mode 100644 x/Xtal.xtal diff --git "a/#/\343\201\206\343\202\223\343\201\241\343\201\217.unchk" "b/#/\343\201\206\343\202\223\343\201\241\343\201\217.unchk" new file mode 100644 index 000000000..9c278b6a4 --- /dev/null +++ "b/#/\343\201\206\343\202\223\343\201\241\343\201\217.unchk" @@ -0,0 +1 @@ +「Hello World」って書く。 diff --git a/.github/workflows/update_readme.yml b/.github/workflows/update_readme.yml index 3c5d6dd2e..6a27d2bbe 100644 --- a/.github/workflows/update_readme.yml +++ b/.github/workflows/update_readme.yml @@ -20,8 +20,16 @@ jobs: - id: last-commit-message run: echo "msg=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT + - id: get-author-name + run: echo "msg=$(git log -1 --pretty=%an)" >> $GITHUB_OUTPUT + - id: get-author-email + run: echo "msg=$(git log -1 --pretty=%aE)" >> $GITHUB_OUTPUT + - uses: stefanzweifel/git-auto-commit-action@v4 with: + commit_user_name: ${{ steps.get-author-name.outputs.msg }} + commit_user_email: ${{ steps.get-author-email.outputs.msg }} + commit_author: ${{ steps.get-author-name.outputs.msg }} <${{ steps.get-author-email.outputs.msg }}> commit_message: ${{ steps.last-commit-message.outputs.msg }} commit_options: '--amend --no-edit' push_options: '--force' diff --git a/a/ABS.abs b/a/ABS.abs new file mode 100644 index 000000000..f3a37892a --- /dev/null +++ b/a/ABS.abs @@ -0,0 +1 @@ +echo("Hello World") diff --git a/a/Asteria b/a/Asteria new file mode 100644 index 000000000..f7f17331a --- /dev/null +++ b/a/Asteria @@ -0,0 +1 @@ +std.io.putln("Hello World"); diff --git a/c/Cadence.cdc b/c/Cadence.cdc new file mode 100644 index 000000000..41d49d330 --- /dev/null +++ b/c/Cadence.cdc @@ -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 + } +} diff --git a/c/Charly.ch b/c/Charly.ch new file mode 100644 index 000000000..ad35e5ae3 --- /dev/null +++ b/c/Charly.ch @@ -0,0 +1 @@ +print("Hello World") diff --git a/c/Cone.cone b/c/Cone.cone new file mode 100644 index 000000000..31f74aa94 --- /dev/null +++ b/c/Cone.cone @@ -0,0 +1,4 @@ +import stdio::* + +fn main(): + print <- "Hello World" diff --git a/d/Dictu.du b/d/Dictu.du new file mode 100644 index 000000000..012788f01 --- /dev/null +++ b/d/Dictu.du @@ -0,0 +1 @@ +print("Hello World"); diff --git a/d/daScript.das b/d/daScript.das new file mode 100644 index 000000000..5f85b8578 --- /dev/null +++ b/d/daScript.das @@ -0,0 +1,3 @@ +[export] +def main + print("Hello World\n") diff --git a/d/dg.dg b/d/dg.dg new file mode 100644 index 000000000..ce438bd29 --- /dev/null +++ b/d/dg.dg @@ -0,0 +1 @@ +print "Hello World" diff --git a/m/Millfork.mfk b/m/Millfork.mfk new file mode 100644 index 000000000..ebcf00542 --- /dev/null +++ b/m/Millfork.mfk @@ -0,0 +1,5 @@ +import stdio + +void main() { + putstrz("Hello World"z) +} diff --git a/m/Mind.src b/m/Mind.src new file mode 100644 index 000000000..b4fa461a3 --- /dev/null +++ b/m/Mind.src @@ -0,0 +1,2 @@ +ᥤȤ +Hello WorldפɽơԤ뤳ȡ diff --git a/m/Minecraft Script.mcscript b/m/Minecraft Script.mcscript new file mode 100644 index 000000000..aa7cf3244 --- /dev/null +++ b/m/Minecraft Script.mcscript @@ -0,0 +1 @@ +log("Hello World") diff --git a/m/Mokkosu.mok b/m/Mokkosu.mok new file mode 100644 index 000000000..10ea164e6 --- /dev/null +++ b/m/Mokkosu.mok @@ -0,0 +1 @@ +do println "Hello World"; diff --git a/m/Morloc.loc b/m/Morloc.loc new file mode 100644 index 000000000..16206a674 --- /dev/null +++ b/m/Morloc.loc @@ -0,0 +1,2 @@ +export hello +hello = "Hello World" diff --git a/o/One.one b/o/One.one new file mode 100644 index 000000000..77e488654 --- /dev/null +++ b/o/One.one @@ -0,0 +1,3 @@ +fn main { + __ "Hello World" +} diff --git a/o/oK.k b/o/oK.k new file mode 100644 index 000000000..06ae699f2 --- /dev/null +++ b/o/oK.k @@ -0,0 +1 @@ +"Hello World" diff --git a/p/Pikelet!.pi b/p/Pikelet!.pi new file mode 100644 index 000000000..06ae699f2 --- /dev/null +++ b/p/Pikelet!.pi @@ -0,0 +1 @@ +"Hello World" diff --git a/q/Qi.qi b/q/Qi.qi new file mode 100644 index 000000000..e09b57178 --- /dev/null +++ b/q/Qi.qi @@ -0,0 +1 @@ +系统。打印行("Hello World") diff --git a/r/Retina.ret b/r/Retina.ret new file mode 100644 index 000000000..491ba2dd5 --- /dev/null +++ b/r/Retina.ret @@ -0,0 +1 @@ +K`Hello World diff --git a/readme.md b/readme.md index 68cd95889..4a48715ab 100644 --- a/readme.md +++ b/readme.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project! -## Languages (975 total) +## Languages (999 total) * [!](%23/%21) * [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B) @@ -37,6 +37,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [ᚱᚢᚾᛅᛦ](%23/%E1%9A%B1%E1%9A%A2%E1%9A%BE%E1%9B%85%E1%9B%A6) * [*](%23/%E2%88%97) * [*><>](%23/%E2%88%97%EF%B9%A5%EF%B9%A4%EF%B9%A5) +* [うんちく](%23/%E3%81%86%E3%82%93%E3%81%A1%E3%81%8F.unchk) * [なでしこ](%23/%E3%81%AA%E3%81%A7%E3%81%97%E3%81%93.nako) * [ひまわり](%23/%E3%81%B2%E3%81%BE%E3%82%8F%E3%82%8A.hmw) * [タイルズ](%23/%E3%82%BF%E3%82%A4%E3%83%AB%E3%82%BA.tls) @@ -53,6 +54,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [aardio](a/aardio.aardio) * [ABAP](a/ABAP.abap) * [ABC](a/ABC.abc) +* [ABS](a/ABS.abs) * [ACIDIC](a/ACIDIC.acidic) * [Acpi](a/Acpi) * [ACRONYM](a/ACRONYM.acronym) @@ -144,6 +146,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Assembler Z80 Knightos](a/Assembler%20Z80%20Knightos.asm) * [Assembler Z80 TI83calculator](a/Assembler%20Z80%20TI83calculator.asm) * [Assembler Z80 zxspectrum](a/Assembler%20Z80%20zxspectrum.asm) +* [Asteria](a/Asteria) * [ATS2](a/ATS2.dats) * [Attache](a/Attache.%40) * [AutoHotKey](a/AutoHotKey.ahk) @@ -209,6 +212,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [C--](c/C--) * [C](c/C.c) * [Cache ObjectScript](c/Cache%20ObjectScript.mac) +* [Cadence](c/Cadence.cdc) * [CAML](c/CAML.ml) * [Candy](c/Candy.candy) * [Cantonese](c/Cantonese.cantonese) @@ -230,6 +234,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Chapel](c/Chapel.chpl) * [Charcoal verbose mode](c/Charcoal%20verbose%20mode.cl) * [Charcoal](c/Charcoal.cl) +* [Charly](c/Charly.ch) * [ChaScript](c/ChaScript) * [Cheddar](c/Cheddar.cheddar) * [Cheese++](c/Cheese%2B%2B.cheese) @@ -257,6 +262,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Comefrom0x10](c/Comefrom0x10) * [Common Lisp](c/Common%20Lisp.lisp) * [Concurnas](c/Concurnas.conc) +* [Cone](c/Cone.cone) * [ContinuesEquation](c/ContinuesEquation.ce) * [Control Language](c/Control%20Language.cllc) * [Cool](c/Cool.cl) @@ -283,6 +289,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [dark](d/dark.txt) * [Dart](d/Dart.dart) * [Darwin](d/Darwin.drw) +* [daScript](d/daScript.das) * [DataFlex](d/DataFlex) * [Db2](d/Db2.sql) * [dBase](d/dBase.dbf) @@ -295,6 +302,8 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Delphi](d/Delphi.pas) * [Deno](d/Deno.ts) * [Desmos](d/Desmos.desmos) +* [dg](d/dg.dg) +* [Dictu](d/Dictu.du) * [Dis](d/Dis.dis) * [Divzeros](d/Divzeros.dz) * [Django](d/Django.py) @@ -587,6 +596,9 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Meq](m/Meq.meq) * [Mercury](m/Mercury.m) * [MilkScript](m/MilkScript.milk) +* [Millfork](m/Millfork.mfk) +* [Mind](m/Mind.src) +* [Minecraft Script](m/Minecraft%20Script.mcscript) * [Minecraft](m/Minecraft.mcfunction) * [Mint](m/Mint.mint) * [Mips](m/Mips.s) @@ -596,12 +608,14 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [ModiScript](m/ModiScript.chai) * [Modula 2](m/Modula%202.mod) * [Modula 3](m/Modula%203.m3) +* [Mokkosu](m/Mokkosu.mok) * [Mongo](m/Mongo.sh) * [Monkey](m/Monkey) * [Monte](m/Monte.mt) * [Moo](m/Moo.moo) * [MOONBlock](m/MOONBlock.png) * [Moonscript](m/Moonscript.moon) +* [Morloc](m/Morloc.loc) * [Morse code](m/Morse%20code) * [Mostawesomeprograminglanguage](m/Mostawesomeprograminglanguage) * [Mouse](m/Mouse.mse) @@ -647,8 +661,10 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [occam](o/occam.occam) * [Octave](o/Octave.m) * [Odin](o/Odin.odin) +* [oK](o/oK.k) * [Omgrofl](o/Omgrofl.omgrofl) * [ON THE WAY TO WHO KNOWS WHERE](o/ON%20THE%20WAY%20TO%20WHO%20KNOWS%20WHERE) +* [One](o/One.one) * [Ooc](o/Ooc.ooc) * [Ook!](o/Ook%21.ok) * [Opa](o/Opa.opa) @@ -692,6 +708,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Pig](p/Pig.pig) * [PikaLang](p/PikaLang.pokeball) * [Pike](p/Pike.pike) +* [Pikelet!](p/Pikelet%21.pi) * [Pinecone](p/Pinecone.pn) * [Pit](p/Pit.pit) * [Pizza](p/Pizza.pizza) @@ -739,6 +756,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Qalb](q/Qalb) * [QBasic](q/QBasic.bas) * [QCL](q/QCL.qcl) +* [Qi](q/Qi.qi) * [Qore](q/Qore.q) * [QSharp](q/QSharp.qs) * [QU](q/QU.qu) @@ -769,6 +787,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Refal](r/Refal.ref) * [ReScript](r/ReScript.res) * [reStructuredText](r/reStructuredText.rst) +* [Retina](r/Retina.ret) * [Retro](r/Retro.retro) * [Rexx](r/Rexx.rexx) * [Rick Roll](r/Rick%20Roll.rickroll) @@ -795,6 +814,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Sas](s/Sas.sas) * [Sass](s/Sass.sass) * [Sather](s/Sather.sa) +* [Sawa](s/Sawa.%EA%A6%B1%EA%A6%AE) * [Scala](s/Scala.scala) * [Scheme](s/Scheme.scm) * [SCHWift](s/SCHWift.y) @@ -856,6 +876,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Swift](s/Swift.swift) * [SystemTap](s/SystemTap.stp) * [Plain text](t/Plain%20text.txt) +* [Tabloid](t/Tabloid) * [Takeover](t/Takeover) * [Tao Presentations](t/Tao%20Presentations.ddd) * [TapeBagel](t/TapeBagel.tb) @@ -878,6 +899,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Tokay](t/Tokay.tok) * [TOML](t/TOML.toml) * [Tonyu](t/Tonyu) +* [TopShell](t/TopShell) * [Trans-dimensional](t/Trans-dimensional) * [Tri](t/Tri.tri) * [TrollScript](t/TrollScript.troll) @@ -941,6 +963,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [wowLang](w/wowLang.wow) * [Wren](w/Wren.wren) * [WSH](w/WSH.vbs) +* [WurstScript](w/WurstScript.wurst) * [wxPython](w/wxPython.py) * [Wyvern](w/Wyvern.wyv) * [X D](x/X%20D.xd) @@ -960,6 +983,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [XQuery](x/XQuery.xq) * [XRF](x/XRF.xrf) * [XSLT](x/XSLT.xslt) +* [Xtal](x/Xtal.xtal) * [XUL](x/XUL.xul) * [Y](y/Y.y) * [YAML](y/YAML.yaml) diff --git "a/s/Sawa.\352\246\261\352\246\256" "b/s/Sawa.\352\246\261\352\246\256" new file mode 100644 index 000000000..a39d751c0 --- /dev/null +++ "b/s/Sawa.\352\246\261\352\246\256" @@ -0,0 +1 @@ +ꦥꦿꦶꦤ꧀("Hello World") diff --git a/t/Tabloid b/t/Tabloid new file mode 100644 index 000000000..0916f798a --- /dev/null +++ b/t/Tabloid @@ -0,0 +1,3 @@ +YOU WON'T WANT TO MISS 'Hello World' + +PLEASE LIKE AND SUBSCRIBE diff --git a/t/TopShell b/t/TopShell new file mode 100644 index 000000000..06ae699f2 --- /dev/null +++ b/t/TopShell @@ -0,0 +1 @@ +"Hello World" diff --git a/w/WurstScript.wurst b/w/WurstScript.wurst new file mode 100644 index 000000000..e6e204dd0 --- /dev/null +++ b/w/WurstScript.wurst @@ -0,0 +1,5 @@ +package HelloWurst +import Printing + +init + print("Hello World") diff --git a/x/Xtal.xtal b/x/Xtal.xtal new file mode 100644 index 000000000..358acd1c0 --- /dev/null +++ b/x/Xtal.xtal @@ -0,0 +1 @@ +"Hello World".p;