commit bench folder (also committing examples folder but that's kind of broken at this state)

This commit is contained in:
2024-05-27 13:30:53 +01:00
parent b5c70772fa
commit d6a5055be1
23 changed files with 459773 additions and 10 deletions

11
bench/transaction.sml Normal file
View File

@@ -0,0 +1,11 @@
signature TRANSACTION =
sig
type t
val empty: t
val insert: int * string * t -> t
val delete: int * int * t -> t
val toString: t -> string
val title : string
val txns : (int * int * string) vector
end