this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lil change

nnuuvv f3091538 31d70942

+2 -5
+2 -5
src/condition_overload.gleam
··· 9 9 import gleam/string 10 10 import splitter 11 11 12 - pub fn main() -> promise.Promise(Result(Row, Nil)) { 12 + pub fn main() { 13 13 let assert Ok(search) = 14 14 argv.load().arguments 15 15 |> list.first() ··· 34 34 }) 35 35 }), 36 36 ) 37 - |> promise.map(fn(x) { 38 - io.print(string.inspect(x)) 39 - x 40 - }) 37 + |> promise.map(fn(x) { io.print(string.inspect(x)) }) 41 38 } 42 39 43 40 // do request and return Row if successful