Info Statements to Write Values to Screen
Add @info Statements to Julia Script Files
You can add an @info statement into a Julia script file, and value will be written to the screen during execution of the file.
Examples:
|
@info "Res_PeakSavings.jl - PolicyControl" |
|
message = "My Message" @info "$message" |
|
loc1 = xUnFlFr[unit,RNG,year] @info " Before xUnFlFr[$unit,RNG,$year] = $loc1" |