<div>I would like to write a function that replaces the Nth element of a tuple.</div>
<div>exemple:</div>
<div> </div>
<div>replace(3,{a,b,c,d},a)   returns {a,b,a,c,d}</div>
<div> </div>
<div>how can I do that?</div>