# Running julia file

**URL:** https://discourse.julialang.org/t/running-julia-file/92799
**Category:** New to Julia
**Created:** [January 11, 2023, 9:51am UTC](https://discourse.julialang.org/t/running-julia-file/92799 "2023-01-11T09:51:45Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![nero](https://avatars.discourse-cdn.com/v4/letter/n/9d8465/32.png) [@nero](https://discourse.julialang.org/u/nero)
#### Post date: [January 11, 2023, 9:51am UTC](https://discourse.julialang.org/t/running-julia-file/92799/1 "2023-01-11T09:51:45Z")

</div>

Greetings

I have faced the following error:

@DESKTOP-J----T:/mnt/c/Users/MYDRIV~1/SOFTWA~1/DUO\_EX~1/V9\_COR~1/Julia/PEC/ADDING~1$ include(“B\_input.jl”)  
bash: syntax error near unexpected token `“B\_input.jl”’

Can someone please help? I am new to Julia

---

<div class="post-metadata">

### Author: ![uniment](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/uniment/32/24532_2.png) [@uniment](https://discourse.julialang.org/u/uniment)
#### Post date: [January 11, 2023, 12:26pm UTC](https://discourse.julialang.org/t/running-julia-file/92799/2 "2023-01-11T12:26:05Z")

</div>

> [@nero](#):
>
> include(“B\_input.jl”)

Instead of the open-quote `“` and closed-quote `”` characters, can you try using simple ASCII quotation `"`?

For example:

```julia
include("B_input.jl")

```

You might need to use a plain text editor, because rich text editors will often automatically change `"` to `“` and `”`.

---

<div class="post-metadata">

### Author: ![PetrKryslUCSD](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/petrkryslucsd/32/215825_2.png) [@PetrKryslUCSD](https://discourse.julialang.org/u/PetrKryslUCSD)
#### Post date: [January 11, 2023, 2:09pm UTC](https://discourse.julialang.org/t/running-julia-file/92799/3 "2023-01-11T14:09:55Z")

</div>

You need to run `julia B_input.jl`. Or, start julia and then in the Julia prompt, type `include("B_input.jl")`.
