fmt: make test clearer
parent
d1224ffb5a
commit
1626aa5500
|
@ -1,4 +1,8 @@
|
|||
pub fn reduce(a []int, iter fn (int, int) int, accum_start int) int {
|
||||
struct Row{
|
||||
id int
|
||||
}
|
||||
|
||||
pub fn (a []Row) reduce(iter fn (int, int) int, accum_start int) int {
|
||||
iter(accum_start)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue