SketchyLISP Reference |
Copyright (C) 2006 Nils M Holm |
<<[char>=?] | [Index] | [divide]>> |
Conformance: SketchyLISP Core
Purpose: Constants for representing decimal digits.
Implementation:
; These definitions have ; migrated to the core. ; (define 0d '0d) ; (define 1d '1d) ; (define 2d '2d) ; (define 3d '3d) ; (define 4d '4d) ; (define 5d '5d) ; (define 6d '6d) ; (define 7d '7d) ; (define 8d '8d) ; (define 9d '9d) (define digits (list 0d 1d 2d 3d 4d 5d 6d 7d 8d 9d))
Example:
5d => 5d
<<[char>=?] | [Index] | [divide]>> |