Introspection: Difference between revisions

Content added Content deleted
m (Fixed typo (existance → existence))
Line 941:
 
=={{header|Julia}}==
{{works with|Julia|0.6}}
 
<lang julia>@show VERSION
VERSION < v"0.4" && exit(1)
 
if isdefined(Base, :bloop) && !isempty(methods(abs))
@show abs(bloop)
end
Line 956 ⟶ 954:
 
{{out}}
<pre>VERSION = v"0.61.2.0"
Integer variables: a, b, c.
Sum of integers in the global scope: 6.</pre>