mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
12 lines
158 B
Ruby
12 lines
158 B
Ruby
class String
|
|
|
|
# @mrbgem mruby-sprintf
|
|
def %(args)
|
|
if args.is_a? Array
|
|
sprintf(self, *args)
|
|
else
|
|
sprintf(self, args)
|
|
end
|
|
end
|
|
end
|