You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are situations where the previous method does not work:
@@ -350,14 +354,20 @@ Then, you will need to use another environment as a playground, and `]develop` (
350
354
Note the new Pkg.jl keyword: `]add PackageName` is used to download a fixed version of a registered package, while `]develop path` links to the current state of the code in a local folder.
@@ -399,13 +409,13 @@ Here are a few more startup packages that can make your life easier once you kno
399
409
400
410
The Julia REPL comes bundled with [InteractiveUtils.jl](https://docs.julialang.org/en/v1/stdlib/InteractiveUtils/), a bunch of very useful functions for interacting with source code.
401
411
402
-
```!
412
+
```!interactiveutils
403
413
using InteractiveUtils # hide
404
414
```
405
415
406
416
Here are a few examples:
407
417
408
-
```>
418
+
```>interactiveutils_examples
409
419
supertypes(Int64)
410
420
subtypes(Integer)
411
421
length(methodswith(Integer))
@@ -637,6 +647,3 @@ The debugger will open a pane showing information about the code such as local v
0 commit comments