Compare commits

...

1 Commits

Author SHA1 Message Date
df16a5bded refactor: gleamify :) 2026-03-16 17:19:46 +01:00

View File

@@ -31,7 +31,8 @@ fn history(_cmds: List(Command)) -> Nil {
fn help(cmds: List(Command)) -> Nil { fn help(cmds: List(Command)) -> Nil {
io.println("Available commands:") io.println("Available commands:")
list.each(cmds, fn(cmd) { cmds
|> list.each(fn(cmd) {
io.println(" " <> cmd.name <> " - " <> cmd.description) io.println(" " <> cmd.name <> " - " <> cmd.description)
}) })
} }