# What is difference between Debugger.jl in REPL and in VS Code GUI one?

**URL:** https://discourse.julialang.org/t/what-is-difference-between-debugger-jl-in-repl-and-in-vs-code-gui-one/54969
**Category:** General Usage
**Created:** [February 10, 2021, 8:23am UTC](https://discourse.julialang.org/t/what-is-difference-between-debugger-jl-in-repl-and-in-vs-code-gui-one/54969 "2021-02-10T08:23:10Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Oto\_Brzobohaty](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/oto_brzobohaty/32/10370_2.png) [@Oto\_Brzobohaty](https://discourse.julialang.org/u/Oto_Brzobohaty)
#### Post date: [February 10, 2021, 8:23am UTC](https://discourse.julialang.org/t/what-is-difference-between-debugger-jl-in-repl-and-in-vs-code-gui-one/54969/1 "2021-02-10T08:23:11Z")

</div>

My impression is that using [Debugger.jl](https://github.com/JuliaDebug/Debugger.jl) is much faster than [debugging in VS Code](https://www.julia-vscode.org/docs/stable/userguide/debugging/)

Usage:

```nohighlight
import Debugger

Debugger.@enter function_name(parameters)

```

vs

```nohighlight

@enter function_name(parameters)

```

directly in VS Code

My impression is that In VS Code the debugger is slow downed by waiting on variables to be shown in `Variables` on left panel. (maybe not)

In REPL Debugger after @entering the function I can press C to toggle compiled mode and afterwards I can step through the function very rapidly. In VS Code by enabling compiled mode I can not see any significant improvement.
