summaryrefslogtreecommitdiff
path: root/lec07/StringBufEditor.hs
blob: e40cc5e484e8af5a8a8f11e3947df8c5a9ec9b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Main where

import StringBuffer
import Editor

main = runEditor editor $ unlines
         [ "This buffer is for notes you don't want to save, and for"
         , "evaluation of steam valve coefficients."
         , "To load a different file, type the character L followed"
         , "by the name of the file."
         ]