fork download
  1. (function(m) {
  2. for (var i = 0; i < m.length; i++) {
  3. print("m_" + i + " = " + m[i]);
  4. };
  5. })(["a","b","c"]);
Success #stdin #stdout 0.01s 4984KB
stdin
Standard input is empty
stdout
m_0 = a
m_1 = b
m_2 = c