Implement 'integer-valued?', 'rational-valued?', and 'real-valued?' in Scheme

Issue #24 new
Katie Burke created an issue

scheme>>> integer-valued? 1901
Traceback (most recent call last):
File "stdin", line 1, col 1
RunTimeError: unbound variable 'integer-valued?'
scheme>>> rational-valued? 1901
Traceback (most recent call last):
File "stdin", line 1, col 1
RunTimeError: unbound variable 'rational-valued?'
scheme>>> real-valued? 1901
Traceback (most recent call last):
File "stdin", line 1, col 1
RunTimeError: unbound variable 'real-valued?'

Comments (2)

  1. Log in to comment