# How do I list the variables I've created?

**URL:** https://discourse.julialang.org/t/how-do-i-list-the-variables-ive-created/66002
**Category:** New to Julia
**Tags:** pluto
**Created:** [August 7, 2021, 11:06pm UTC](https://discourse.julialang.org/t/how-do-i-list-the-variables-ive-created/66002 "2021-08-07T23:06:20Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![cybervigilante](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cybervigilante/32/26687_2.png) [@cybervigilante](https://discourse.julialang.org/u/cybervigilante)
#### Post date: [August 7, 2021, 11:06pm UTC](https://discourse.julialang.org/t/how-do-i-list-the-variables-ive-created/66002/1 "2021-08-07T23:06:20Z")

</div>

Since I can’t re-use variables in Pluto, and it can be a chore to look for the conflicting var in a big notebook, how do I list the variables I’ve already created? So far, every single suggestion I’ve searched, such as varinfo(), is either outmoded or returns a lot of garbola but not a simple list of my variables.

---

<div class="post-metadata">

### Author: ![aplavin](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/aplavin/32/222056_2.png) [@aplavin](https://discourse.julialang.org/u/aplavin)
#### Post date: [August 8, 2021, 4:00pm UTC](https://discourse.julialang.org/t/how-do-i-list-the-variables-ive-created/66002/2 "2021-08-08T16:00:45Z")

</div>

`varinfo` seems to wok in Pluto, but you need to specify some options:  
`varinfo(@ __MODULE__ (), imported=true)`.

---

<div class="post-metadata">

### Author: ![cybervigilante](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cybervigilante/32/26687_2.png) [@cybervigilante](https://discourse.julialang.org/u/cybervigilante)
#### Post date: [August 8, 2021, 5:30pm UTC](https://discourse.julialang.org/t/how-do-i-list-the-variables-ive-created/66002/3 "2021-08-08T17:30:04Z")

</div>

> [@aplavin](#):
>
> varinfo(@ **MODULE** (), imported=true)

Thanks. That worked. You get one virtual coffee at the Programmer’s Milkbar 😃

---

<div class="post-metadata">

### Author: ![lungben](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/lungben/32/12314_2.png) [@lungben](https://discourse.julialang.org/u/lungben)
#### Post date: [August 8, 2021, 5:45pm UTC](https://discourse.julialang.org/t/how-do-i-list-the-variables-ive-created/66002/4 "2021-08-08T17:45:31Z")

</div>

By the way you can Ctrl+ click on each global variable in Pluto to get to its definition.
