first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class String
|
||||
def %(args)
|
||||
if args.is_a? Array
|
||||
sprintf(self, *args)
|
||||
else
|
||||
sprintf(self, args)
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user