SketchyLISP Reference |
Copyright (C) 2006 Nils M Holm |
<<[n<] | [Index] | [n>]>> |
Conformance: SketchyLISP Core
Purpose:
Check whether two natural numbers are in non-descending
order. Return
#t,
if
a<=b
and otherwise
#f.
Arguments:
A - natural number
B - natural number
Implementation:
(define (n<= a b) (eq? (n> a b) #f))
Example:
(n<= 5 5) => #t
See also:
digits,
n>,
n<=,
=,
<=.
<<[n<] | [Index] | [n>]>> |