Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

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

gleam / benchmark / list / test / benchmarks.gleam
340 B 16 lines
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2025 The Gleam contributors 3 4import gleamy/bench 5 6import gleam/io 7import gleam/list 8 9pub fn print_results(results: List(bench.BenchResults)) { 10 results 11 |> list.map(fn(result) { 12 result 13 |> bench.table([bench.IPS, bench.Min, bench.P(99)]) 14 |> io.println() 15 }) 16}