#34
Implement range
 

Difficulty:Easy
Topics:seqs core-functions


Write a function which creates a list of all integers in a given range.
test not run
(= (__ 1 4) '(1 2 3))
test not run
(= (__ -2 2) '(-2 -1 0 1))
test not run
(= (__ 5 8) '(5 6 7))
Special Restrictions
  • range


  • Code which fills in the blank: