# How do I print hello world in Julia?

**URL:** https://discourse.julialang.org/t/how-do-i-print-hello-world-in-julia/54691
**Category:** General Usage
**Created:** [February 5, 2021, 3:22pm UTC](https://discourse.julialang.org/t/how-do-i-print-hello-world-in-julia/54691 "2021-02-05T15:22:09Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![BridgeBot](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bridgebot/32/21491_2.png) [@BridgeBot](https://discourse.julialang.org/u/BridgeBot)
#### Post date: [February 5, 2021, 3:22pm UTC](https://discourse.julialang.org/t/how-do-i-print-hello-world-in-julia/54691/1 "2021-02-05T15:22:09Z")

</div>

How do I print hello world in Julia? I tried doing:

```julia

julia&gt; hello world
ERROR: syntax: extra token "world" after end of expression
Stacktrace:
 [1] top-level scope at none:1

```

[This is a test]

Note that the original poster on Slack cannot see your response here on Discourse. Consider _transcribing the appropriate answer back to Slack_, or pinging the poster here on Discourse so they can _follow this thread_.  
[(Original message :slack:)](https://julialang.slack.com/archives/C6A044SQH/p1612538510110300?thread_ts=1612538510.110300&cid=C6A044SQH) [(More Info)](https://github.com/JuliaCommunity/SlackBridge)

---

<div class="post-metadata">

### Author: ![Jeff\_Emanuel](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jeff_emanuel/32/15440_2.png) [@Jeff\_Emanuel](https://discourse.julialang.org/u/Jeff_Emanuel)
#### Post date: [February 5, 2021, 3:37pm UTC](https://discourse.julialang.org/t/how-do-i-print-hello-world-in-julia/54691/2 "2021-02-05T15:37:05Z")

</div>

> **[Hello World in Julia - GeeksforGeeks](https://www.geeksforgeeks.org/hello-world-in-julia/)**
>
> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

---

<div class="post-metadata">

### Author: ![BridgeBot](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bridgebot/32/21491_2.png) [@BridgeBot](https://discourse.julialang.org/u/BridgeBot)
#### Post date: [February 5, 2021, 3:52pm UTC](https://discourse.julialang.org/t/how-do-i-print-hello-world-in-julia/54691/3 "2021-02-05T15:52:00Z")

</div>

You need to do `print("Hello World")`

[(Original message :slack:)](https://julialang.slack.com/archives/C6A044SQH/p1612539815111400?thread_ts=1612538510110300) [(More Info)](https://github.com/JuliaCommunity/SlackBridge)

---

<div class="post-metadata">

### Author: ![fdx](https://avatars.discourse-cdn.com/v4/letter/f/46a35a/32.png) [@fdx](https://discourse.julialang.org/u/fdx)
#### Post date: [February 18, 2026, 1:01am UTC](https://discourse.julialang.org/t/how-do-i-print-hello-world-in-julia/54691/5 "2026-02-18T01:01:02Z")

</div>

`println("Hello World")`
