uiua-lang / uiua

A stack-based array programming language
https://www.uiua.org
MIT License
1.62k stars 116 forks source link

Arrays tutorial does not use the new `∈ memberof` #537

Closed Europe2048 closed 3 months ago

Europe2048 commented 3 months ago

In the Nested Arrays section:

For example, to check if a string is in a list of □ boxed strings with ∊ member, you would need to □ box the string first.

Langs ← {"Uiua" "APL" "J" "BQN" "K" "Q"}
∊ □"APL" Langs

It should really be:

For example, to check if a string is in a list of □ boxed strings with ∈ memberof, you would need to □ box the string first.

Langs ← {"Uiua" "APL" "J" "BQN" "K" "Q"}
∈ Langs □"APL"

Other tutorials are luckily not affected.