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

9 lines
105 B
Plaintext

julia> mycommand = `echo hello`
`echo hello`
julia> typeof(mycommand)
Cmd
julia> run(mycommand);
hello