print(x)
Write (to the default output stream) a canonical (un-decorated) text representation of a value if there is one, otherwise call show
. The representation used by print
includes minimal formatting and tries to avoid Julia-specific details.
Examples
julia> x=rand(2)
print("calling $x")
print("Test")
calling [0.6952490337795421,0.7818490462627075]Test
See Also
:@printf, :@sprintf, display, displayable, dump, info, isprint, print, println, print_escaped, print_joined, print_shortest, print_unescaped, print_with_color, pushdisplay, redisplay, show, showall, showcompact, sprint, versioninfo,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.