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

15
bench/gap_buffer_rust.sml Normal file
View File

@@ -0,0 +1,15 @@
structure GapBufferRust: TRANSACTION =
struct
type t = GapBuffer.t
val empty = GapBuffer.empty
val insert = GapBuffer.insert
val delete = GapBuffer.delete
val toString = GapBuffer.toString
val title = "Rust"
val txns = RustCode.txns
end
structure Main = Run(GapBufferRust)
val _ = Main.run ()