fork download
  1. def make_string(str, num)
  2. return str*num
  3. end
  4. puts(make_string('b', 2))
  5.  
Success #stdin #stdout 0.01s 7416KB
stdin
Standard input is empty
stdout
bb