foreach x $list1 y $list2 { lappend result [Myfunc $x $y] }
lmap x $list1 y $list2 {Myfunc $x $y}
lmap {x y} $list1 {Myfunc $x $y}