Skip to content
Snippets Groups Projects
lots_of_args.e 149 B
f(a,
  b,
  c,
  d,
  e,
  f,
  g,
  h,
  i,
  j
  ){
  return a + b * c + d * e * f + g * h * i * j;
}

main(){
  return f(1,2,3,4,5,6,7,8,9,10);
}