[squeak-dev] name puzzle: how to name a message

Tobias Pape Das.Linux at gmx.de
Tue Jul 7 13:09:29 UTC 2015


Hi all

I've got a small naming puzzle:

So we have
	x to: y
that makes 
	Intervall (x, x+1, x+2, ... , y)

And we can do
	x to: x + z
to get
	Intervall (x, x+1, x+2, ..., x+z)


But we have x twice in there.

What would you name the message
	x ???? z
that gives
	Intervall (x, x+1, x+2, ..., x+z)

I'm curious for your answers :)

Best regards
	-Tobias

PS: #by: is already taken for #to:by:
PPS: A workaround is
	(0 to: z) + x


More information about the Squeak-dev mailing list