10 lines
131 B
Ruby
10 lines
131 B
Ruby
class String
|
|
def %(args)
|
|
if args.is_a? Array
|
|
sprintf(self, *args)
|
|
else
|
|
sprintf(self, args)
|
|
end
|
|
end
|
|
end
|