Fork of daniellemaywood.uk/gleam — Wasm codegen work
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}