# Pronounciation guide?

**URL:** https://discourse.julialang.org/t/pronounciation-guide/49556
**Category:** General Usage
**Tags:** question
**Created:** [November 3, 2020, 11:06pm UTC](https://discourse.julialang.org/t/pronounciation-guide/49556 "2020-11-03T23:06:17Z")
**Posts on this page:** 13
**Page:** 1

<div class="post-metadata">

### Author: ![claforte](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/claforte/32/19115_2.png) [@claforte](https://discourse.julialang.org/u/claforte)
#### Post date: [November 3, 2020, 11:06pm UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/1 "2020-11-03T23:06:18Z")

</div>

Hi, I love Julia but I have a hard type guessing how some of the functions/operators are called/pronounced. For instance, how do people pronounce:

1. → 
2. =\>

…? Single-arrow, double-arrow? It would be great if the documentation included a pronounciation guide…

Thanks!

---

<div class="post-metadata">

### Author: ![Mattriks](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mattriks/32/351_2.png) [@Mattriks](https://discourse.julialang.org/u/Mattriks)
#### Post date: [November 3, 2020, 11:43pm UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/2 "2020-11-03T23:43:07Z")

</div>

1. “to” from latex “\to” → (see [Julia unicode](https://docs.julialang.org/en/v1/manual/unicode-input/))
2. “Pair x, y” (see `?Pair`)

---

<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: [November 4, 2020, 12:18am UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/3 "2020-11-04T00:18:14Z")

</div>

Stab it, pair it.

---

<div class="post-metadata">

### Author: ![cojua8](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cojua8/32/11882_2.png) [@cojua8](https://discourse.julialang.org/u/cojua8)
#### Post date: [November 4, 2020, 1:50am UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/4 "2020-11-04T01:50:36Z")

</div>

I’d call them by usage:

1.- `->` is for definition of anonymous functions, eg. `(x) -> x + 1`.

2.- `=>` is for pairs, eg. `A => 1`. Complementing @Mattriks answer, you can just type `?=>` to get help

---

<div class="post-metadata">

### Author: ![claforte](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/claforte/32/19115_2.png) [@claforte](https://discourse.julialang.org/u/claforte)
#### Post date: [November 5, 2020, 10:44am UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/5 "2020-11-05T10:44:21Z")

</div>

Thanks everyone! So I guess I’ll pronounce them:

1. (x) → x + 1 : x stab x + 1
2. A =\> 1 : A pair 1

---

<div class="post-metadata">

### Author: ![martenlienen](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/martenlienen/32/18572_2.png) [@martenlienen](https://discourse.julialang.org/u/martenlienen)
#### Post date: [November 5, 2020, 11:07am UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/6 "2020-11-05T11:07:40Z")

</div>

When I talk about code I would form sentences instead of reading the code out symbol for symbol, e.g.

1. `(x) -> x + 1`: define the function that maps `x` to its successor
2. `A => 1`: form the pair of `A` and `1`

---

<div class="post-metadata">

### Author: ![simeonschaub](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/simeonschaub/32/216566_2.png) [@simeonschaub](https://discourse.julialang.org/u/simeonschaub)
#### Post date: [November 5, 2020, 11:25am UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/7 "2020-11-05T11:25:05Z")

</div>

Another (less violent 😄) way of saying it, which is more oriented towards semantics than how the operators look, similar to @martenlienen’s answer:

1. `(x) -> x + 1`: “map `x` to `x + 1`”
2. `A => 1`: “`A` points to `1`”, or even just “`A` to `1`”

---

<div class="post-metadata">

### Author: ![mschauer](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mschauer/32/13946_2.png) [@mschauer](https://discourse.julialang.org/u/mschauer)
#### Post date: [November 5, 2020, 11:28am UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/8 "2020-11-05T11:28:58Z")

</div>

“x maps to y” and “x paired with y”

PS: Reminds me when I had to practice reading formulas in plain english with my paranymphs for the dutch ceremonial defence (they have to read the doctoral propositions to the public):

> _Let x be the two-dimensional solution of the differential equation with time derivative equal to one over capital t minus 2 t times the two-by-two matrix with minus one on the diagonal and one otherwise, times x of t plus Wiener noise starting in x of 0 equalling the vector u comma v for t in the interval from 0 to capital t half…_

---

<div class="post-metadata">

### Author: ![Tamas\_Papp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamas_papp/32/25949_2.png) [@Tamas\_Papp](https://discourse.julialang.org/u/Tamas_Papp)
#### Post date: [November 6, 2020, 4:45pm UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/9 "2020-11-06T16:45:34Z")

</div>

> [@mschauer](#):
>
> they have to read the doctoral propositions to the public

Yes, ever since the well-known We Want to Listen to Thesis Abstracts Revolt of 1642 in Utrecht, before which they didn’t.

But the public just kept demanding it, so it was wiser to give in to popular demand before they burned down something 😉

---

<div class="post-metadata">

### Author: ![mschauer](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mschauer/32/13946_2.png) [@mschauer](https://discourse.julialang.org/u/mschauer)
#### Post date: [November 7, 2020, 12:52pm UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/10 "2020-11-07T12:52:15Z")

</div>

> Thesis Abstracts Revolt of 1642 in Utrecht

You are wrong in a detail. Before 1642 a thesis consisted _only_ of proposition to be disputed in doctoral defence. It was Gisbertus Voetius at Utrecht University, who in a quarrel with Descartes set of by a condemning statement in [1642](https://en.wikipedia.org/wiki/Gisbertus_Voetius#Utrecht_controversy_with_Descartes) (Descartes had to flee to Den Hague in the course) that Gisbertus forced his students to write entire monographs (apparently believing that propositions alone where not sufficient to refute cartesian philosophy.)

 ![Screenshot 2020-11-07 at 13.49.25](https://global.discourse-cdn.com/julialang/original/3X/2/9/29cadda668467ba1789a9960196a54b7e3fd09af.jpeg)

( _Gisbertus Voetius (1589 - 1676): sein Theologieverständnis und seine Gotteslehre_ . Beck, Andreas J., 1965-. Göttingen: Vandenhoeck & Ruprecht, 2007.)

---

<div class="post-metadata">

### Author: ![anon92994695](https://avatars.discourse-cdn.com/v4/letter/a/ce7236/32.png) [@anon92994695](https://discourse.julialang.org/u/anon92994695)
#### Post date: [November 7, 2020, 2:10pm UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/11 "2020-11-07T14:10:31Z")

</div>

I have no idea how we ended up here. But this is incredibly interesting.

---

<div class="post-metadata">

### Author: ![rafael.guerra](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rafael.guerra/32/216610_2.png) [@rafael.guerra](https://discourse.julialang.org/u/rafael.guerra)
#### Post date: [November 7, 2020, 3:27pm UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/12 "2020-11-07T15:27:06Z")

</div>

Descartes must have said that “(all) Voetius must be counted”…

---

<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: [November 9, 2020, 2:41am UTC](https://discourse.julialang.org/t/pronounciation-guide/49556/13 "2020-11-09T02:41:02Z")

</div>

Now I remember another terminological option: arrow and fat arrow.  
That matches the look of the symbols quite well, I think.
