File: or.html

package info (click to toggle)
drscheme 1%3A352-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 71,608 kB
  • ctags: 55,284
  • sloc: ansic: 278,966; cpp: 63,318; sh: 32,265; lisp: 14,530; asm: 7,327; makefile: 4,846; pascal: 4,363; perl: 2,920; java: 1,632; yacc: 755; lex: 258; sed: 93; xml: 12
file content (1 line) | stat: -rw-r--r-- 897 bytes parent folder | download | duplicates (2)
1
<html><head><title>or</title><h1>or</h1></head><body><code class="scheme">(<code class="scheme"><span class="keyword">or</span></code> <b>EXPRESSION</b>   <b>EXPRESSION</b> <b>EXPRESSION</b> ...)</code><br /> An <code class="scheme"><span class="keyword">or</span></code> expression contains two or more expressions. They are evaluated from left to right. If the first expression evaluates to true, the <code class="scheme"><span class="keyword">or</span></code> expression immediately evaluates to true. If the first expression evaluates to false, the next expression is considered. If all expressions evaluate to false, the <code class="scheme"><span class="keyword">or</span></code> expression evaluates to false. If any of the expressions evaluate to a value other than true or false, it is an error. <br /><p><a href="index.htm">Intermediate Student with Lambda Language</a></p></body></html>