SendETHToThisAddress
SendETHToThisAddress

Reputation: 3774

Kusto show function | show info about function

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: 3761

Answers (1)

Lukasz Szozda
Lukasz Szozda

Reputation: 176234

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.

Upvotes: 7

Related Questions