Monday, February 07, 2005

A good hospice experience

It sounds like this person had a good hospice experience. No, there is nothing that can be done to take the sting from death, but there is an odd peace that comes with taking just a bit out of the mystery of death.

1 comments:

PKD said...

GCD (int x, int y) {
if x | y
return x
else if y | x
return y
else if y > x
'y = nx + r
return GCD (x,r)
else
'x = ny + r
return GCD (y,r)
}