Is Strictly Ascending Assignment

From CSE425S Wiki
Jump to navigation Jump to search

Code to Implement

file: src/main/sml/warmup_is_strictly_ascending/is_strictly_ascending.sml Smlnj-logo.png
functions: is_strictly_ascending

is_strictly_ascending

Write a function

fun is_strictly_ascending(xs : int list) : bool

which returns true if every value in xs is strictly less than all of the values which follow it.

Test

source folder: src/test/sml/warmup_is_strictly_ascending
how to run with CM.make verbosity off: sml -Ccm.verbose=false run_is_strictly_ascending_testing.sml
how to run with CM.make verbosity on: sml run_is_strictly_ascending_testing.sml

note: ensure that you have removed all printing to receive credit for any assignment.

SML Error Messages