RosettaCodeData/Task/Quoting-constructs/Julia/quoting-constructs-6.jl

9 lines
105 B
Julia
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
julia> mycommand = `echo hello`
`echo hello`
julia> typeof(mycommand)
Cmd
julia> run(mycommand);
hello