git-subtree-dir: brolib-sml git-subtree-mainline:64471ecf7fgit-subtree-split:fd96032949
14 lines
287 B
Standard ML
14 lines
287 B
Standard ML
structure LineGapSvelete: TRANSACTION =
|
|
struct
|
|
type t = LineGap.t
|
|
val empty = LineGap.empty
|
|
val insert = LineGap.insert
|
|
val delete = LineGap.delete
|
|
val toString = LineGap.toString
|
|
val txns = SvelteComponent.txns
|
|
end
|
|
|
|
structure Main = Run(LineGapSvelete)
|
|
|
|
val _ = Main.run ()
|