Imagine I have a function with a domain of all integers bigger than 0. I want the result of other inputs to be undefined. For the sake of simplicity, let's say this is the increment function. In Haskell, I could achieve this with something like
f :: Integer -> Integer
f x
| x > 0 = x + 1
| otherwise = undefined
Of course, the example is quite gimped but it should be clear what I want to achieve. I'm not sure how to achieve the similar in Scheme.
(define (f x)
(if (> x 0)
(+ x 1)
(?????)))
My idea is to just stick an error in there but is there any way to replicate the Haskell behaviour more closely?
errorwill behave like Haskellundefined, unless you intend to catch and examine the exception that is produced. – Heatsink Jan 1 at 17:59displaydoes? It does it's side-effect of printing to terminal and it has an unspecified return value. How can I achieve that behaviour (the return value, not the printing)? – Mateusz Kowalczyk Jan 1 at 18:13