[apl/en] format correctly (#4938)

This commit is contained in:
Boris Verkhovskiy 2024-05-12 04:38:39 -06:00 committed by GitHub
parent a929a00571
commit f1a1fe071a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,11 @@
⍝ These examples can be tested here:
⍝ http://ngn.github.io/apl/web/index.html
---
language: APL
contributors:
- ["nooodl", "https://github.com/nooodl"]
filename: learnapl.apl
---
```apl
⍝ Comments in APL are prefixed by ⍝.
⍝ A list of numbers. (¯ is negative)
@ -55,3 +60,4 @@ A ← 10 60 55 23
⍝ We can define this as a function using {} and ⍵:
mean ← {(+/⍵)÷⍴⍵}
mean A ⍝ 37
```