From: "Iñaki Baz Castillo" Date: 2009-03-03T05:48:39+09:00 Subject: Is faster using abbreviated parameter names? Hi, a simple question: a) def hello(string) # stuff with 'string' end b) def hello(s) # stuff with 's' end Will be b) faster since the parameter name contains less letters? -- Iñaki Baz Castillo