fork download
  1. import 'dart:io';
  2.  
  3. void main() {
  4. print("abc".replaceAll("", "k"));
  5. print("".replaceAll("", "k"));
  6. }
Success #stdin #stdout 1.16s 130144KB
stdin
Standard input is empty
stdout
kakbkck
k