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

View File

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