2
votes

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, "'.") };
1

1 Answers

5
votes

You could use:

.show function EnterString 

.show function

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.