-
Notifications
You must be signed in to change notification settings - Fork 3
Scripts Output
Daniel Balcárek edited this page Nov 1, 2021
·
1 revision
Windows Proccess, PowerShell, Python, Linux Shell - In all of these you can use default commands to write to output.
If you want to write to output just call log or logf function, the functions are defined in C# code. For example:
//example of log function
var someString = 'just some string';
log(someString);
log('just some another string');
//example of logf function - format
var result = 5*10;
logf(result, '5*10={0}');