Difference between revisions of "My Length Assignment"

From CSE425S Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
=Functions to Use=
 +
==[https://smlfamily.github.io/Basis/list.html List Structure]==
 +
[https://smlfamily.github.io/Basis/list.html#SIG:LIST.null:VAL null] is empty
 +
[https://smlfamily.github.io/Basis/list.html#SIG:LIST.tl:VAL tl] tail
 +
 
=Code to Implement=
 
=Code to Implement=
  

Revision as of 14:41, 30 August 2024

Functions to Use

List Structure

null is empty tl tail

Code to Implement

file: src/main/sml/warmup_my_length/my_length.sml Smlnj-logo.png
functions: my_length

my_length

Write a function my_length which evaluates to the length of the given values list.

  • what is the base case?
  • what is the general (recursive) case?
fun my_length(values) =
	raise Fail "NotYetImplemented"

Test

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

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

SML Error Messages