What is the current state of tail-call-optimization for F# on Mono (2.11)?

╄→尐↘猪︶ㄣ 提交于 2019-12-04 05:07:43

Tail calls definitely work on mono on linux - tested using

let rec f a = f (a+1)

which didn't crash - tested on Mono 2.10.2

UPDATE

Tested with link from Brian - https://bugzilla.novell.com/show_bug.cgi?id=476785

which crashes on Mono 2.10.2 despite generating .tail instructions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!