Is it possible to know the name of a function in itself ?
main()->
myFunction().
myFunction()->
io:write("I am ~s !",[????]).
|
Is it possible to know the name of a function in itself ?
|
||||
|
|
|
You can use:
Where
Note however, that while this would be functionally equivalent to a theoretical See this Erlang mailing list discussion for more info on why a |
||||
|
|
|
at runtime, you could throw an exception and check the top of the stacktrace.
|
|||
|
|