Merge pull request #3336 from divayprakash/fix-red

[Red/en] Explain initialize, closes #1467
This commit is contained in:
Divay Prakash 2018-10-27 18:26:06 +05:30 committed by GitHub
commit 6e0f5f6365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,7 +103,8 @@ type? my-integer
integer!
; A variable can be initialized using another variable that gets initialized
; at the same time.
; at the same time. Initialize here refers to both declaring a variable and
; assigning a value to it.
i2: 1 + i1: 1
; Arithmetic is straightforward