You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/guide/05-mutation.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ It is also possible to create a binding with the same name as an existing bindin
72
72
module Main
73
73
74
74
let val = 1
75
-
let val = 2 // `val` now refers a new value
75
+
let val = 2 // `val` now refers to a new value
76
76
```
77
77
78
78
It is important to note that shadowing does not modify what the shadowed binding refers to, but rather makes a new association for a binding name within the scope:
Copy file name to clipboardExpand all lines: src/content/docs/intro/02-getting_grain.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ We have a couple different ways to get Grain. Most developers will prefer the Pa
9
9
10
10
The Grain toolchain (including our CLI, compiler, runtime, and standard library) is shipped as a single binary. Binaries are available for [MacOS x64](#MacOS-x64---Homebrew), [Linux x64](#Linux-x64---Download), and [Windows x64](#Windows-x64---Download).
11
11
12
-
**Note:** These binaries are a bit slow when first building a project (around 70 seconds). The packaged compiler is running in JavaScript, _and_ it builds and writes the runtime & standard library into your project. If you need raw speed, you can build the native compiler from source! See [Building Grain from Source](#Building-Grain-from-Source) below.
12
+
**Note:** These binaries are a bit slow when first building a project (around 10 seconds). The packaged compiler is running in JavaScript, _and_ it builds and writes the runtime & standard library into your project. If you need raw speed, you can build the native compiler from source! See [Building Grain from Source](#Building-Grain-from-Source) below.
13
13
14
14
### MacOS x64 - Homebrew
15
15
@@ -23,30 +23,30 @@ _The `--no-quarantine` flag will avoid having to approve the binary in the Secur
23
23
24
24
### MacOS x64 - Download
25
25
26
-
If you'd prefer not to use homebrew, you can [download it](https://github.com/grain-lang/grain/releases/download/grain-v0.5.13/grain-mac-x64) directly from GitHub or using `curl`.
26
+
If you'd prefer not to use homebrew, you can [download it](https://github.com/grain-lang/grain/releases/download/grain-v0.6.6/grain-mac-x64) directly from GitHub or using `curl`.
0 commit comments