Print meta info for claims and data, update sample code

This commit is contained in:
2024-11-02 21:42:08 -07:00
parent d09afd89e0
commit f225d0ecbd
4 changed files with 80 additions and 39 deletions

View File

@@ -85,7 +85,7 @@ part2 : List Game -> Int
part2 Nil = 0
part2 (MkGame n parts :: rest) =
case foldl maxd (0,0,0) parts of
(a,b,c) => a*b*c + part2 rest
(a,b,c) => a * b * c + part2 rest
run : String -> Dummy
run fn =