diff --git a/FormDSL.formdsl b/FormDSL.formdsl new file mode 100644 index 0000000..2c008ac --- /dev/null +++ b/FormDSL.formdsl @@ -0,0 +1,3 @@ +Section hello { + (title "Hello, world!") +} diff --git a/README.md b/README.md index 5f59cf2..c0b1a74 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - [Cow](cow.cow) - [Dart](dart.dart) - [Elixir](elixir.ex) +- [FormDSL](FormDSL.formdsl) - [Fortran](fortran.f95) - [Go](go.go) - [Groovy](groovy.groovy) @@ -27,6 +28,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - [JavaScript](javascript.js) - [Julia](julia.jl) - [Kotlin](kotlin.kt) +- [Lisp (1)](py-lark-lispy.clj) - [Lua](lua.lua) - [Nasm (x86)](nasm.asm) - [OCaml](ocaml.ml) @@ -44,7 +46,9 @@ This is a repository full of implementations of the classic, "Hello, world!", in - [Rust](rust.rs) - [Scala](scala.scala) - [StarDot](stardot.stardot) +- [Stekk](stekk.stekk) - [Swift](swift.swift) - [TypeScript](typescript.ts) - [VB.NET](vb.net.vb) +- [XMU](xmu.xmu) - [Zig](zig.zig) diff --git a/py-lark-lispy.clj b/py-lark-lispy.clj new file mode 100644 index 0000000..ea774b5 --- /dev/null +++ b/py-lark-lispy.clj @@ -0,0 +1,13 @@ +(import "$.webserver" :all) + +(server + [ + [:get "/" ( + fun [request] + [:html + [ + [:h1 "Hello,"] + [:h2 "world!"] + ]])]] + + "0.0.0.0" 9999) diff --git a/stekk.stekk b/stekk.stekk new file mode 100644 index 0000000..ae2566a --- /dev/null +++ b/stekk.stekk @@ -0,0 +1 @@ +("Hello, world!" .println); diff --git a/xmu.xmu b/xmu.xmu new file mode 100644 index 0000000..f3ed9fb --- /dev/null +++ b/xmu.xmu @@ -0,0 +1,11 @@ +[ + header(1)[ + Hello, + ] + style[ + $text-color: red; + color: $text-color; + ][ + world! + ] +]