Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Why wont this .sml file load correctly into my enviorment without getting a bunch of errors???? (*strip: function that inputs two file names, one for

Why wont this .sml file load correctly into my enviorment without getting a bunch of errors????

(*strip: function that inputs two file names, one for reading and one for writing, and removes non-integers from the input file, writing the result to the output file*)

fun strip (inputFile:string) (outputFile:string) : unit =

let input = TextIO.openIn inputFile in

let output = TextIO.openOut outputFile in

let rec processLine () =

let line = TextIO.inputLine input in

match line with

| None -> TextIO.closeIn input; TextIO.closeOut output

| Some s ->

match Int.fromString s with

| Some i -> TextIO.outputLine output (Int.toString i); processLine()

| None -> processLine()

processLine()

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Learning MySQL Get A Handle On Your Data

Authors: Seyed M M Tahaghoghi

1st Edition

0596529465, 9780596529468

More Books

Students also viewed these Databases questions

Question

how do characted banks generate income?

Answered: 1 week ago

Question

What is the highest outlier for online transactions?

Answered: 1 week ago

Question

What is the median transaction for online transactions?

Answered: 1 week ago