Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions FormDSL.formdsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Section hello {
(title "Hello, world!")
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
13 changes: 13 additions & 0 deletions py-lark-lispy.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
(import "$.webserver" :all)

(server
[
[:get "/" (
fun [request]
[:html
[
[:h1 "Hello,"]
[:h2 "world!"]
]])]]

"0.0.0.0" 9999)
1 change: 1 addition & 0 deletions stekk.stekk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
("Hello, world!" .println);
11 changes: 11 additions & 0 deletions xmu.xmu
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[
header(1)[
Hello,
]
style[
$text-color: red;
color: $text-color;
][
world!
]
]