Greg Ewing wrote:
> Andrew Clover wrote:
> 
> 
>>Here's another syntax off the top of my head - put the first case in the 
>>switch statement?
>>
>>   switch biscuit.type if 'digestive':
>>       ...
>>   elif in 'jammy_dodger', 'garibaldi':
>>       ...
>>   else:
>>       ...
> 
> 
> Ugly.

    switch x:
       pass
    case 1:
       ...
    case 2:
       ...

(OK you can shoot me now.)

-- Talin
_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to