Is there a keyword to show a function in Kusto? For example if I have a function like this:
let EnterString = (a:string) { strcat("You entered '", a, "'.") };
Can I call something like .show to show the function?
.show EnterString
Expected output:
let EnterString = (a:string) { strcat("You entered '", a, "'.") };