Merge pull request #3409 from hoodiecrow/patch-1

[red/en] Update red.html.markdown
This commit is contained in:
Divay Prakash 2018-12-01 09:54:53 +05:30 committed by GitHub
commit 3fa5983bdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,12 +114,12 @@ i2 * i1 ; result 2
i1 / i2 ; result 0 (0.5, but truncated towards 0) i1 / i2 ; result 0 (0.5, but truncated towards 0)
; Comparison operators are probably familiar, and unlike in other languages ; Comparison operators are probably familiar, and unlike in other languages
; you only need a single '=' sign for comparison. ; you only need a single '=' sign for comparison. Inequality is '<>' like in Pascal.
; There is a boolean like type in Red. It has values true and false, but also ; There is a boolean like type in Red. It has values true and false, but also
; the values on/off or yes/no can be used ; the values on/off or yes/no can be used
3 = 2 ; result false 3 = 2 ; result false
3 != 2 ; result true 3 <> 2 ; result true
3 > 2 ; result true 3 > 2 ; result true
3 < 2 ; result false 3 < 2 ; result false
2 <= 2 ; result true 2 <= 2 ; result true
@ -129,8 +129,8 @@ i1 / i2 ; result 0 (0.5, but truncated towards 0)
; Control Structures ; Control Structures
; ;
; if ; if
; Evaluate a block of code if a given condition is true. IF does not return ; Evaluate a block of code if a given condition is true. IF returns
; any value, so cannot be used in an expression. ; the resulting value of the block or 'none' if the condition was false.
if a < 0 [print "a is negative"] if a < 0 [print "a is negative"]
; either ; either
@ -165,7 +165,7 @@ print ["a is " msg lf]
; until ; until
; Loop over a block of code until the condition at end of block, is met. ; Loop over a block of code until the condition at end of block, is met.
; UNTIL does not return any value, so it cannot be used in an expression. ; UNTIL always returns the 'true' value from the final evaluation of the last expression.
c: 5 c: 5
until [ until [
prin "o" prin "o"