Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 3040

Macaulay2-1.3.1-8.fc15.i686.rpm

-- -*- M2-comint -*- {* hash: 241810652 *}

i1 : g = openOut "test-file"

o1 = test-file

o1 : File

i2 : g << "hi there" << endl << close

o2 = test-file

o2 : File

i3 : h = openOutAppend "test-file"

o3 = test-file

o3 : File

i4 : h << "ho there" << endl << close

o4 = test-file

o4 : File

i5 : get "test-file"

o5 = hi there
     ho there


i6 : removeFile "test-file"

i7 :