考虑代码示例:
let foo x = x
let bar f =
printf "function name is %s" (*?*)
bar foo //should print: "function name is foo"
非常感谢!
答案 0 :(得分:4)
你不能,抱歉。 (根据您想要做的具体情况,可能存在约束,您可以削弱并完成工作。)
也许还可以看到 Getting the name of the parameter passed into a method