C Programers
- Posted by don cole <doncole at p?cbell.ne?> Jul 22, 2007
- 624 views
Hello C Programers,
Can any of you translate this to Euphoria?
int sum_list(struct list_node *l)
{
if(l == NULL)
return 0;
return l.data + sum_list(l.next);
}
Don Cole

