1
考慮代碼示例:如何檢索F#中的函數名稱?
let foo x = x
let bar f =
printf "function name is %s" (*?*)
bar foo //should print: "function name is foo"
非常感謝!
考慮代碼示例:如何檢索F#中的函數名稱?
let foo x = x
let bar f =
printf "function name is %s" (*?*)
bar foo //should print: "function name is foo"
非常感謝!
你不能,對不起。 (取決於你想要做的事情,有可能是一個制約因素在這裏你可以削弱和完成一項工作。)