Reputation: 3704
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, "'.") };
Upvotes: 4
Views: 3703
Reputation: 175686
You could use:
.show function EnterString
Parameters
The parameters required by the function.
Body
(Zero or more) let statements followed by a valid CSL expression that is evaluated upon function invocation.
Upvotes: 7