How can I modify a tuple in a txt
file from Haskell ?
I have a file .hs where you have the example below, what I want to know is how to add another tuple to the file from WinGhci
.
Example:
alumnos :: [(Integer,[Char],Integer,Double,Double,Double,Double )]
alumnos = [
(16320100, "Alex", 20, 24.23, 45.21, 26.16, 60.90),
(16320101, "Emy", 21, 59.23, 12.55, 61.97, 85.04)
]