this repo has no description
0
fork

Configure Feed

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

add error printing

nnuuvv 44671123 139b6989

+7
+7
src/condition_overload.gleam
··· 35 35 }) 36 36 }), 37 37 ) 38 + // print value 38 39 |> promise.map(result.map(_, fn(x) { io.println(format_row(x)) })) 40 + // print error 41 + |> promise.map( 42 + result.map_error(_, fn(x) { 43 + io.println("something went wrong: " <> string.inspect(x)) 44 + }), 45 + ) 39 46 } 40 47 41 48 fn format_row(row: Row) -> String {