Short-circuit evaluation: Difference between revisions

m
→‎{{header|Wren}}: Changed to Wren S/H
m (→‎{{header|Wren}}: Changed to Wren S/H)
 
(41 intermediate revisions by 25 users not shown)
Line 28:
<br>If the language does not have short-circuit evaluation, this might be achieved with nested &nbsp; &nbsp; '''if''' &nbsp; &nbsp; statements.
<br><br>
 
=={{header|11l}}==
{{trans|Python}}
 
<syntaxhighlight lang="11l">F a(v)
print(‘ ## Called function a(#.)’.format(v))
R v
 
F b(v)
print(‘ ## Called function b(#.)’.format(v))
R v
 
L(i) (0B, 1B)
L(j) (0B, 1B)
print("\nCalculating: x = a(i) and b(j)")
V x = a(i) & b(j)
print(‘Calculating: y = a(i) or b(j)’)
V y = a(i) | b(j)</syntaxhighlight>
 
{{out}}
<pre>
 
Calculating: x = a(i) and b(j)
# Called function a(0B)
Calculating: y = a(i) or b(j)
# Called function a(0B)
# Called function b(0B)
 
Calculating: x = a(i) and b(j)
# Called function a(0B)
Calculating: y = a(i) or b(j)
# Called function a(0B)
# Called function b(1B)
 
Calculating: x = a(i) and b(j)
# Called function a(1B)
# Called function b(0B)
Calculating: y = a(i) or b(j)
# Called function a(1B)
 
Calculating: x = a(i) and b(j)
# Called function a(1B)
# Called function b(1B)
Calculating: y = a(i) or b(j)
# Called function a(1B)
</pre>
 
 
=={{header|6502 Assembly}}==
There are no built-in booleans but the functionality can be easily implemented with 0 = False and 255 = True.
 
Source Code for the module:
<syntaxhighlight lang="6502asm">;DEFINE 0 AS FALSE, $FF as true.
False equ 0
True equ 255
Func_A:
;input: accumulator = value to check. 0 = false, nonzero = true.
;output: 0 if false, 255 if true. Also prints the truth value to the screen.
;USAGE: LDA val JSR Func_A
BEQ .falsehood
load16 z_HL,BoolText_A_True ;lda #<BoolText_A_True sta z_L lda #>BoolText_A_True sta z_H
jsr PrintString
jsr NewLine
LDA #True
rts
.falsehood:
load16 z_HL,BoolText_A_False
jsr PrintString
jsr NewLine
LDA #False
rts
Func_B:
;input: Y = value to check. 0 = false, nonzero = true.
;output: 0 if false, 255 if true. Also prints the truth value to the screen.
;USAGE: LDY val JSR Func_B
TYA
BEQ .falsehood ;return false
load16 z_HL,BoolText_B_True
jsr PrintString
jsr NewLine
LDA #True
rts
.falsehood:
load16 z_HL,BoolText_B_False
jsr PrintString
jsr NewLine
LDA #False
rts
 
 
Func_A_and_B:
;input:
; z_B = input for Func_A
; z_C = input for Func_B
;output:
;0 if false, 255 if true
LDA z_B
jsr Func_A
BEQ .falsehood
LDY z_C
jsr Func_B
BEQ .falsehood
;true
load16 z_HL,BoolText_A_and_B_True
jsr PrintString
jsr NewLine
LDA #True
rts
.falsehood:
load16 z_HL,BoolText_A_and_B_False
jsr PrintString
jsr NewLine
LDA #False
rts
Func_A_or_B:
;input:
; z_B = input for Func_A
; z_C = input for Func_B
;output:
;0 if false, 255 if true
LDA z_B
jsr Func_A
BNE .truth
LDY z_C
jsr Func_B
BNE .truth
;false
load16 z_HL,BoolText_A_or_B_False
jsr PrintString
LDA #False
rts
.truth:
load16 z_HL,BoolText_A_or_B_True
jsr PrintString
LDA #True
rts
BoolText_A_True:
db "A IS TRUE",0
BoolText_A_False:
db "A IS FALSE",0
BoolText_B_True:
db "B IS TRUE",0
BoolText_B_False:
db "B IS FALSE",0
BoolText_A_and_B_True:
db "A AND B IS TRUE",0
BoolText_A_and_B_False:
db "A AND B IS FALSE",0
BoolText_A_or_B_True:
db "A OR B IS TRUE",0
BoolText_A_or_B_False:
db "A OR B IS FALSE",0</syntaxhighlight>
 
 
The relevant code for the actual invoking of the functions:
<syntaxhighlight lang="6502asm">lda #True
sta z_B
lda #True
sta z_C
jsr Func_A_and_B
jsr NewLine
jsr Func_A_or_B
jmp *</syntaxhighlight>
 
And finally the output:
[[https://i.ibb.co/TTJRphL/shortcircuit.png Output image]]
 
=={{header|Action!}}==
<syntaxhighlight lang="action!">BYTE FUNC a(BYTE x)
PrintF(" a(%B)",x)
RETURN (x)
 
BYTE FUNC b(BYTE x)
PrintF(" b(%B)",x)
RETURN (x)
 
PROC Main()
BYTE i,j
 
FOR i=0 TO 1
DO
FOR j=0 TO 1
DO
PrintF("Calculating %B AND %B: call",i,j)
IF a(i)=1 AND b(j)=1 THEN
FI
PutE()
OD
OD
PutE()
 
FOR i=0 TO 1
DO
FOR j=0 TO 1
DO
PrintF("Calculating %B OR %B: call",i,j)
IF a(i)=1 OR b(j)=1 THEN
FI
PutE()
OD
OD
RETURN</syntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Short-circuit_evaluation.png Screenshot from Atari 8-bit computer]
<pre>
Calculating 0 AND 0: call a(0)
Calculating 0 AND 1: call a(0)
Calculating 1 AND 0: call a(1) b(0)
Calculating 1 AND 1: call a(1) b(1)
 
Calculating 0 OR 0: call a(0) b(0)
Calculating 0 OR 1: call a(0) b(1)
Calculating 1 OR 0: call a(1)
Calculating 1 OR 1: call a(1)
</pre>
 
=={{header|Ada}}==
Ada has built-in short-circuit operations '''and then''' and '''or else''':
<langsyntaxhighlight Adalang="ada">with Ada.Text_IO; use Ada.Text_IO;
 
procedure Test_Short_Circuit is
Line 57 ⟶ 281:
end loop;
end loop;
end Test_Short_Circuit;</langsyntaxhighlight>
{{out|Sample output}}
<pre>
Line 76 ⟶ 300:
{{works with|ELLA ALGOL 68|Any (with appropriate job cards) - tested with release [http://sourceforge.net/projects/algol68/files/algol68toc/algol68toc-1.8.8d/algol68toc-1.8-8d.fc9.i386.rpm/download 1.8-8d]}}
Note: The "brief" ''conditional clause'' ( ~ | ~ | ~ ) is a the standard's ''shorthand'' for enforcing ''short-circuit evaluation''. Moreover, the coder is able to define their own '''proc'''[edures] and '''op'''[erators] that implement ''short-circuit evaluation'' by using Algol68's ''proceduring''.
<langsyntaxhighlight lang="algol68">PRIO ORELSE = 2, ANDTHEN = 3; # user defined operators #
OP ORELSE = (BOOL a, PROC BOOL b)BOOL: ( a | a | b ),
ANDTHEN = (BOOL a, PROC BOOL b)BOOL: ( a | b | a );
Line 113 ⟶ 337:
print(("T ANDTHEN T = ", a(TRUE) ANDTHEN (BOOL:b(TRUE)), new line))
 
)</langsyntaxhighlight>
{{out}}
<pre>
Line 129 ⟶ 353:
{{works with|ALGOL 68G|Any - tested with release [http://sourceforge.net/projects/algol68/files/algol68g/algol68g-1.18.0/algol68g-1.18.0-9h.tiny.el5.centos.fc11.i386.rpm/download 1.18.0-9h.tiny]}}
{{works with|ELLA ALGOL 68|Any (with appropriate job cards) - tested with release [http://sourceforge.net/projects/algol68/files/algol68toc/algol68toc-1.8.8d/algol68toc-1.8-8d.fc9.i386.rpm/download 1.8-8d]}}
<langsyntaxhighlight lang="algol68">test:(
 
PROC a = (BOOL a)BOOL: ( print(("a=",a,", ")); a),
Line 153 ⟶ 377:
END CO
 
)</langsyntaxhighlight>
{{out}}
<pre>
Line 168 ⟶ 392:
=={{header|ALGOL W}}==
In Algol W the boolean "and" and "or" operators are short circuit operators.
<langsyntaxhighlight lang="algolw">begin
 
logical procedure a( logical value v ) ; begin write( "a: ", v ); v end ;
Line 182 ⟶ 406:
write( "---" );
end.</langsyntaxhighlight>
{{out}}
<pre>
Line 200 ⟶ 424:
---
</pre>
 
 
=={{header|AppleScript}}==
Line 210 ⟶ 433:
(As a statement, rather than an expression, the ''if ... then ... else'' structure does not compose – unlike ''cond'' or ''? :'', it can not be nested inside expressions)
 
<langsyntaxhighlight AppleScriptlang="applescript">on run
map(test, {|and|, |or|})
Line 263 ⟶ 486:
end map
 
</syntaxhighlight>
</lang>
 
 
Line 283 ⟶ 506:
{{true, false, false, false}, {true, true, true, false}}
</pre>
 
=={{header|Arturo}}==
 
<syntaxhighlight lang="arturo">a: function [v][
print ["called function A with:" v]
v
]
 
b: function [v][
print ["called function B with:" v]
v
]
 
loop @[true false] 'i ->
loop @[true false] 'j ->
print ["\tThe result of A(i) AND B(j) is:" and? -> a i -> b j]
 
print ""
 
loop @[true false] 'i ->
loop @[true false] 'j ->
print ["\tThe result of A(i) OR B(j) is:" or? -> a i -> b j]</syntaxhighlight>
 
{{out}}
 
<pre>called function A with: true
called function B with: true
The result of A(i) AND B(j) is: true
called function A with: true
called function B with: false
The result of A(i) AND B(j) is: false
called function A with: false
The result of A(i) AND B(j) is: false
called function A with: false
The result of A(i) AND B(j) is: false
 
called function A with: true
The result of A(i) OR B(j) is: true
called function A with: true
The result of A(i) OR B(j) is: true
called function A with: false
called function B with: true
The result of A(i) OR B(j) is: true
called function A with: false
called function B with: false
The result of A(i) OR B(j) is: false</pre>
 
=={{header|AutoHotkey}}==
In AutoHotkey, the boolean operators, '''and''', '''or''', and ternaries, short-circuit:
<syntaxhighlight lang="autohotkey">i = 1
<lang AutoHotkey>i = 1
j = 1
x := a(i) and b(j)
Line 301 ⟶ 570:
MsgBox, b() was called with the parameter "%p%".
Return, p
}</langsyntaxhighlight>
 
=={{header|AWK}}==
Short-circuit evalation is done in logical AND (&&) and logical OR (||) operators:
<langsyntaxhighlight AWKlang="awk">#!/usr/bin/awk -f
BEGIN {
print (a(1) && b(1))
Line 321 ⟶ 590:
print " y:"y
return y
}</langsyntaxhighlight>
{{out}}
<pre>
Line 337 ⟶ 606:
 
=={{header|Axe}}==
<langsyntaxhighlight lang="axe">TEST(0,0)
TEST(0,1)
TEST(1,0)
Line 358 ⟶ 627:
Lbl B
r₁
Return</langsyntaxhighlight>
 
=={{header|BaConBASIC}}==
==={{header|BaCon}}===
BaCon supports short-circuit evaluation.
 
<langsyntaxhighlight lang="freebasic">' Short-circuit evaluation
FUNCTION a(f)
PRINT "FUNCTION a"
Line 388 ⟶ 658:
PRINT "TRUE or FALSE"
y = a(TRUE) OR b(FALSE)
PRINT y</langsyntaxhighlight>
 
{{out}}
Line 409 ⟶ 679:
=={{header|Batch File}}==
{{trans|Liberty BASIC}}
<langsyntaxhighlight lang="dos">%=== Batch Files have no booleans. on if command, let alone short-circuit evaluation ===%
%=== I will instead use 1 as true and 0 as false. ===%
 
Line 455 ⟶ 725:
echo. calls func b
set bool_b=%1
goto :EOF</langsyntaxhighlight>
{{Out}}
<pre>AND
Line 492 ⟶ 762:
=={{header|BBC BASIC}}==
Short-circuit operators aren't implemented directly, but short-circuit AND can be simulated using cascaded IFs. Short-circuit OR can be converted into a short-circuit AND using De Morgan's laws.
<langsyntaxhighlight lang="bbcbasic"> REM TRUE is represented as -1, FALSE as 0
FOR i% = TRUE TO FALSE
FOR j% = TRUE TO FALSE
Line 519 ⟶ 789:
DEFFNboolstring(bool%)
IF bool%=0 THEN ="FALSE" ELSE="TRUE"</langsyntaxhighlight>
This gives the results shown below:
<pre>For x=a(TRUE) AND b(TRUE)
Line 549 ⟶ 819:
Bracmat has no booleans. The closest thing is the success or failure of an expression. A function is not called if the argument fails, so we have to use a trick to pass 'failure' to a function. Here it is accomplished by an extra level of indirection: two == in the definition of 'false' (and 'true', for symmetry) and two !! when evaluating the argument in the functions a and b. The backtick is another hack. This prefix tells Bracmat to look the other way if the backticked expression fails and to continue as if the expression succeeded. A neater way is to introduce an extra OR operator. That solution would have obscured the core of the current task.
Short-circuit evaluation is heavily used in Bracmat code. Although not required, it is a good habit to exclusively use AND (&) and OR (|) operators to separate expressions, as the code below exemplifies.
<langsyntaxhighlight lang="bracmat">( (a=.out$"I'm a"&!!arg)
& (b=.out$"I'm b"&!!arg)
& (false==~)
Line 577 ⟶ 847:
& done
);
</syntaxhighlight>
</lang>
Output:
<pre>Testing false AND false
Line 602 ⟶ 872:
=={{header|C}}==
Boolean operators <nowiki>&&</nowiki> and || are shortcircuit operators.
<langsyntaxhighlight lang="c">#include <stdio.h>
#include <stdbool.h>
 
Line 633 ⟶ 903:
 
return 0;
}</langsyntaxhighlight>
 
=={{header|C++}}==
Just like C, boolean operators <nowiki>&&</nowiki> and || are shortcircuit operators.
<lang cpp>#include <iostream>
 
bool a(bool in)
{
std::cout << "a" << std::endl;
return in;
}
 
bool b(bool in)
{
std::cout << "b" << std::endl;
return in;
}
 
void test(bool i, bool j) {
std::cout << std::boolalpha << i << " and " << j << " = " << (a(i) && b(j)) << std::endl;
std::cout << std::boolalpha << i << " or " << j << " = " << (a(i) || b(j)) << std::endl;
}
 
int main()
{
test(false, false);
test(false, true);
test(true, false);
test(true, true);
return 0;
}</lang>
{{out}}
<pre>a
false and false = false
a
b
false or false = false
a
false and true = false
a
b
false or true = true
a
b
true and false = false
a
true or false = true
a
b
true and true = true
a
true or true = true</pre>
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">using System;
 
class Program
Line 716 ⟶ 935:
}
}
}</langsyntaxhighlight>
{{out}}
<syntaxhighlight lang="text">a
False and False = False
 
Line 744 ⟶ 963:
 
a
True or True = True</langsyntaxhighlight>
 
=={{header|C++}}==
Just like C, boolean operators <nowiki>&&</nowiki> and || are shortcircuit operators.
<syntaxhighlight lang="cpp">#include <iostream>
 
bool a(bool in)
{
std::cout << "a" << std::endl;
return in;
}
 
bool b(bool in)
{
std::cout << "b" << std::endl;
return in;
}
 
void test(bool i, bool j) {
std::cout << std::boolalpha << i << " and " << j << " = " << (a(i) && b(j)) << std::endl;
std::cout << std::boolalpha << i << " or " << j << " = " << (a(i) || b(j)) << std::endl;
}
 
int main()
{
test(false, false);
test(false, true);
test(true, false);
test(true, true);
return 0;
}</syntaxhighlight>
{{out}}
<pre>a
false and false = false
a
b
false or false = false
a
false and true = false
a
b
false or true = true
a
b
true and false = false
a
true or false = true
a
b
true and true = true
a
true or true = true</pre>
 
=={{header|Clojure}}==
The print/println stuff in the doseq is kinda gross, but if you include them all in a single print, then the function traces are printed before the rest (since it has to evaluate them before calling print).
<langsyntaxhighlight Clojurelang="clojure">(letfn [(a [bool] (print "(a)") bool)
(b [bool] (print "(b)") bool)]
(doseq [i [true false] j [true false]]
Line 754 ⟶ 1,024:
(println (or (a i) (b j)))
(print i "AND" j " = ")
(println (and (a i) (b j)))))</langsyntaxhighlight>
{{out}}
<pre>true OR true = (a)true
Line 766 ⟶ 1,036:
 
=={{header|Common Lisp}}==
<langsyntaxhighlight lang="lisp">(defun a (F)
(print 'a)
F )
Line 778 ⟶ 1,048:
(and (a (car x)) (b (car(cdr x))))
(format t "~%(or ~S)" x)
(or (a (car x)) (b (car(cdr x)))))</langsyntaxhighlight>
{{out}}
(and (NIL NIL))
Line 803 ⟶ 1,073:
=={{header|D}}==
{{trans|Python}}
<langsyntaxhighlight lang="d">import std.stdio, std.algorithm;
 
T a(T)(T answer) {
Line 823 ⟶ 1,093:
immutable r2 = a(x) || b(y);
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 852 ⟶ 1,122:
=={{header|Delphi}}==
Delphi supports short circuit evaluation by default. It can be turned off using the {$BOOLEVAL OFF} compiler directive.
<langsyntaxhighlight Delphilang="delphi">program ShortCircuitEvaluation;
 
{$APPTYPE CONSOLE}
Line 883 ⟶ 1,153:
end;
end;
end.</langsyntaxhighlight>
 
=={{header|Dyalect}}==
 
{{trans|Swift}}
 
<syntaxhighlight lang="dyalect">func a(v) {
print(nameof(a), terminator: "")
return v
}
func b(v) {
print(nameof(b), terminator: "")
return v
}
func testMe(i, j) {
print("Testing a(\(i)) && b(\(j))")
print("Trace: ", terminator: "")
print("\nResult: \(a(i) && b(j))")
print("Testing a(\(i)) || b(\(j))")
print("Trace: ", terminator: "")
print("\nResult: \(a(i) || b(j))")
print()
}
testMe(false, false)
testMe(false, true)
testMe(true, false)
testMe(true, true)</syntaxhighlight>
 
{{out}}
 
<pre>Testing a(false) && b(false)
Trace: a
Result: false
Testing a(false) || b(false)
Trace: ab
Result: false
 
Testing a(false) && b(true)
Trace: a
Result: false
Testing a(false) || b(true)
Trace: ab
Result: true
 
Testing a(true) && b(false)
Trace: ab
Result: false
Testing a(true) || b(false)
Trace: a
Result: true
 
Testing a(true) && b(true)
Trace: ab
Result: true
Testing a(true) || b(true)
Trace: a
Result: true</pre>
 
=={{header|E}}==
E defines <code>&amp;&amp;</code> and <code>||</code> in the usual short-circuiting fashion.
<langsyntaxhighlight lang="e">def a(v) { println("a"); return v }
def b(v) { println("b"); return v }
 
def x := a(i) && b(j)
def y := b(i) || b(j)</langsyntaxhighlight>
Unusually, E is an expression-oriented language, and variable bindings (which are expressions) are in scope until the end of the nearest enclosing <code>{ ... }</code> block. The combination of these features means that some semantics must be given to a binding occurring inside of a short-circuited alternative.
<langsyntaxhighlight lang="e">def x := a(i) && (def funky := b(j))</langsyntaxhighlight>
The choice we make is that <code>funky</code> is ordinary if the right-side expression was evaluated, and otherwise is <em>ruined</em>; attempts to access the variable give an error.
 
=={{header|EasyLang}}==
<syntaxhighlight lang=easylang>
func a x .
print "->a: " & x
return x
.
func b x .
print "->b: " & x
return x
.
print "1 and 1"
if a 1 = 1 and b 1 = 1
print "-> true"
.
print ""
print "1 or 1"
if a 1 = 1 or b 1 = 1
print "-> true"
.
print ""
print "0 and 1"
if a 0 = 1 and b 1 = 1
print "-> true"
.
print ""
print "0 or 1"
if a 0 = 1 or b 1 = 1
print "-> true"
.
</syntaxhighlight>
 
=={{header|Ecstasy}}==
Similar to Java, Ecstasy uses the <span style="background-color: #e5e4e2">&nbsp;&amp;&amp;&nbsp;</tt></span> and <span style="background-color: #e5e4e2"><tt>&nbsp;||&nbsp;</tt></span> operators for short-circuiting logic, and <span style="background-color: #e5e4e2"><tt>&nbsp;&amp;&nbsp;</tt></span> and <span style="background-color: #e5e4e2"><tt>&nbsp;|&nbsp;</tt></span> are the normal (non-short-circuiting) forms.
 
<syntaxhighlight lang="java">
module test {
@Inject Console console;
 
static Boolean show(String name, Boolean value) {
console.print($"{name}()={value}");
return value;
}
 
void run() {
val a = show("a", _);
val b = show("b", _);
 
for (Boolean v1 : False..True) {
for (Boolean v2 : False..True) {
console.print($"a({v1}) && b({v2}) == {a(v1) && b(v2)}");
console.print();
console.print($"a({v1}) || b({v2}) == {a(v1) || b(v2)}");
console.print();
}
}
}
}
</syntaxhighlight>
 
{{out}}
<pre>
a()=False
a(False) && b(False) == False
 
a()=False
b()=False
a(False) || b(False) == False
 
a()=False
a(False) && b(True) == False
 
a()=False
b()=True
a(False) || b(True) == True
 
a()=True
b()=False
a(True) && b(False) == False
 
a()=True
a(True) || b(False) == True
 
a()=True
b()=True
a(True) && b(True) == True
 
a()=True
a(True) || b(True) == True
</pre>
 
=={{header|Elena}}==
ELENA 46.x :
<langsyntaxhighlight lang="elena">import system'routines;
import extensions;
Func<bool, bool> a = (bool x){ console.writeLine:("a"); ^ x };
Func<bool, bool> b = (bool x){ console.writeLine("b"); ^ x };
const bool[] boolValues = new bool[]{ false, true };
Func<bool, bool> b = (bool x){ console.writeLine:"b"; ^ x };
 
const bool[] boolValues = new bool[] { false, true };
public program()
{
boolValues.forEach::(bool i)
{
boolValues.forEach::(bool j)
{
console.printLine(i," and ",j," = ",a(i) && b(j));
Line 919 ⟶ 1,341:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 952 ⟶ 1,374:
 
=={{header|Elixir}}==
<langsyntaxhighlight lang="elixir">defmodule Short_circuit do
defp a(bool) do
IO.puts "a( #{bool} ) called"
Line 973 ⟶ 1,395:
end
 
Short_circuit.task</langsyntaxhighlight>
 
{{out}}
Line 1,007 ⟶ 1,429:
 
=={{header|Erlang}}==
<syntaxhighlight lang="erlang">
<lang Erlang>
-module( short_circuit_evaluation ).
 
Line 1,030 ⟶ 1,452:
io:fwrite( "~p orelse ~p~n", [Boolean1, Boolean2] ),
io:fwrite( "=> ~p~n", [a(Boolean1) orelse b(Boolean2)] ).
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,065 ⟶ 1,487:
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang="fsharp">let a (x : bool) = printf "(a)"; x
let b (x : bool) = printf "(b)"; x
 
Line 1,071 ⟶ 1,493:
|> List.iter (fun (x, y) ->
printfn "%b AND %b = %b" x y ((a x) && (b y))
printfn "%b OR %b = %b" x y ((a x) || (b y)))</langsyntaxhighlight>
Output
<pre>(a)(b)true AND true = true
Line 1,084 ⟶ 1,506:
=={{header|Factor}}==
<code>&&</code> and <code>||</code> perform short-circuit evaluation, while <code>and</code> and <code>or</code> do not. <code>&&</code> and <code>||</code> both expect a sequence of quotations to evaluate in a short-circuit manner. They are smart combinators; that is, they infer the number of arguments taken by the quotations. If you opt not to use the smart combinators, you can also use words like <code>0&&</code> and <code>2||</code> where the arity of the quotations is dictated.
<langsyntaxhighlight lang="factor">USING: combinators.short-circuit.smart io prettyprint ;
IN: rosetta-code.short-circuit
 
Line 1,097 ⟶ 1,519:
"t || f = " write { [ t a ] [ f b ] } || .
"t && t = " write { [ t a ] [ t b ] } && .
"t || t = " write { [ t a ] [ t b ] } || .</langsyntaxhighlight>
{{out}}
<pre>
Line 1,111 ⟶ 1,533:
 
=={{header|Fantom}}==
<langsyntaxhighlight lang="fantom">class Main
{
static Bool a (Bool value)
Line 1,138 ⟶ 1,560:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 1,164 ⟶ 1,586:
 
=={{header|Forth}}==
<langsyntaxhighlight lang="forth">\ Short-circuit evaluation definitions from Wil Baden, with minor name changes
: ENDIF postpone THEN ; immediate
 
Line 1,191 ⟶ 1,613:
I A IF J B IF 1 ELSE END-PRIOR-IF 0 ENDIF ." ANDIF=" .bool CR
I A 0= IF J B IF END-PRIOR-IF 1 ELSE 0 ENDIF ." ORELSE=" .bool CR
LOOP LOOP ;</langsyntaxhighlight>
{{out}}
<pre>A=true B=true ANDIF=true
Line 1,205 ⟶ 1,627:
{{works with|Fortran|90 and later}}
Using an <code>IF .. THEN .. ELSE</code> construct
<langsyntaxhighlight lang="fortran">program Short_Circuit_Eval
implicit none
 
Line 1,255 ⟶ 1,677:
write(*, "(a,l1,a)") "Called function b(", value, ")"
end function
end program</langsyntaxhighlight>
{{out}}
<pre>Calculating x = a(F) and b(F)
Line 1,294 ⟶ 1,716:
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Function a(p As Boolean) As Boolean
Line 1,322 ⟶ 1,744:
Print
Print "Press any key to quit"
Sleep</langsyntaxhighlight>
 
{{out}}
Line 1,341 ⟶ 1,763:
x = false y = true
</pre>
 
=={{header|Fōrmulæ}}==
 
{{FormulaeEntry|page=https://formulae.org/?script=examples/Short-circuit_evaluation}}
 
'''Solution'''
 
[[File:Fōrmulæ - Short-circuit evaluation 01.png]]
 
[[File:Fōrmulæ - Short-circuit evaluation 02.png]]
 
=={{header|Go}}==
Short circuit operators are <nowiki>&&</nowiki> and ||.
<langsyntaxhighlight lang="go">package main
 
import "fmt"
Line 1,375 ⟶ 1,807:
test(true, false)
test(true, true)
}</langsyntaxhighlight>
{{out}}
<pre>Testing a(false) && b(false)
Line 1,407 ⟶ 1,839:
=={{header|Groovy}}==
Like all C-based languages (of which I am aware), Groovy short-circuits the logical and (<nowiki>&&</nowiki>) and logical or (||) operations, but not the bitwise and (<nowiki>&</nowiki>) and bitwise or (|) operations.
<langsyntaxhighlight lang="groovy">def f = { println ' AHA!'; it instanceof String }
def g = { printf ('%5d ', it); it > 50 }
 
Line 1,421 ⟶ 1,853:
assert g(2) || f('sss')
assert ! (g(1) && f('sss'))
assert g(200) || f('sss')</langsyntaxhighlight>
{{out}}
<pre>bitwise
Line 1,436 ⟶ 1,868:
=={{header|Haskell}}==
[[Lazy evaluation]] makes it possible for user-defined functions to be short-circuited. An expression will not be evaluated as long as it is not [[pattern matching|pattern matched]]:
<langsyntaxhighlight lang="haskell">module ShortCircuit where
 
import Prelude hiding ((&&), (||))
Line 1,453 ⟶ 1,885:
 
main = mapM_ print ( [ a p || b q | p <- [False, True], q <- [False, True] ]
++ [ a p && b q | p <- [False, True], q <- [False, True] ])</langsyntaxhighlight>
{{out}}
<pre>
Line 1,478 ⟶ 1,910:
</pre>
One can force the right-hand arguemnt to be evaluated first be using the alternate definitions:
<langsyntaxhighlight lang="haskell">_ && False = False
False && True = False
_ && _ = True
Line 1,484 ⟶ 1,916:
_ || True = True
True || False = True
_ || _ = False</langsyntaxhighlight>
{{out}}
<pre>
Line 1,509 ⟶ 1,941:
</pre>
The order of evaluation (in this case the original order again) can be seen in a more explicit form by [[syntactic sugar|desugaring]] the pattern matching:
<langsyntaxhighlight lang="haskell">p && q = case p of
False -> False
_ -> case q of
Line 1,519 ⟶ 1,951:
_ -> case q of
True -> True
_ -> False</langsyntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
Line 1,530 ⟶ 1,962:
* Rather than have the tasks print their own name, we will just utilize built-in tracing which will be more informative.
This use of procedures as values is somewhat contrived but serves us well for demonstration purposes. In practice this approach would be strained since failure results aren't re-captured as values (and can't easily be).
<langsyntaxhighlight Iconlang="icon">procedure main()
&trace := -1 # ensures functions print their names
 
Line 1,548 ⟶ 1,980:
procedure false() #: fails always
fail # for clarity but not needed as running into end has the same effect
end</langsyntaxhighlight>
Sample output for a single case:<pre>i,j := procedure true, procedure false
i & j:
Line 1,559 ⟶ 1,991:
Shortcircuit.icn: 16 | true returned &null
i,j := procedure true, procedure true</pre>
 
=={{header|Insitux}}==
{{trans|Clojure}}
<syntaxhighlight lang="insitux">
(let a (fn (print-str "a ") %)
b (fn (print-str "b ") %)
f (pad-right " " 6))
 
(for i [true false] j [true false]
(print-str (f i) "OR " (f j) " = ")
(print (or (a i) (b j)))
(print-str (f i) "AND " (f j) " = ")
(print (and (a i) (b j))))
</syntaxhighlight>
{{out}}
<pre>
true OR true = a true
true AND true = a b true
true OR false = a true
true AND false = a b false
false OR true = a b true
false AND true = a false
false OR false = a b false
false AND false = a false
</pre>
 
=={{header|Io}}==
{{trans|Ruby}}
<langsyntaxhighlight Iolang="io">a := method(bool,
writeln("a(#{bool}) called." interpolate)
bool
Line 1,580 ⟶ 2,037:
writeln
)
)</langsyntaxhighlight>
{{output}}
<pre>a(true) called.
Line 1,612 ⟶ 2,069:
=={{header|J}}==
See the J wiki entry on [[j:Essays/Short Circuit Boolean|short circuit booleans]].
<langsyntaxhighlight lang="j">labeled=:1 :'[ smoutput@,&":~&m'
A=: 'A ' labeled
B=: 'B ' labeled
and=: ^:
or=: 2 :'u^:(-.@v)'</langsyntaxhighlight>
{{out|Example}}
<langsyntaxhighlight lang="j"> (A and B) 1
B 1
A 1
Line 1,631 ⟶ 2,088:
B 0
A 0
0</langsyntaxhighlight>
Note that J evaluates right-to-left.
 
Line 1,638 ⟶ 2,095:
=={{header|Java}}==
In Java the boolean operators <code>&&</code> and <code>||</code> are short circuit operators. The eager operator counterparts are <code>&</code> and <code>|</code>.
<langsyntaxhighlight lang="java">public class ShortCirc {
public static void main(String[] args){
System.out.println("F and F = " + (a(false) && b(false)) + "\n");
Line 1,662 ⟶ 2,119:
return b;
}
}</langsyntaxhighlight>
{{out}}
<pre>a
Line 1,696 ⟶ 2,153:
Short-circuiting evaluation of boolean expressions has been the default since the first versions of JavaScript.
 
<langsyntaxhighlight JavaScriptlang="javascript">(function () {
'use strict';
 
Line 1,717 ⟶ 2,174:
return [x, y, z];
})();</langsyntaxhighlight>
 
The console log shows that in each case (the binding of all three values), only the left-hand part of the expression (the application of ''a(expr)'') was evaluated – ''b(expr)'' was skipped by logical short-circuiting.
Line 1,733 ⟶ 2,190:
=={{header|jq}}==
jq's 'and' and 'or' are short-circuit operators. The following demonstration, which follows the "awk" example above, requires a version of jq with the built-in filter 'stderr'.
<langsyntaxhighlight lang="jq">def a(x): " a(\(x))" | stderr | x;
 
def b(y): " b(\(y))" | stderr | y;
Line 1,740 ⟶ 2,197:
"or:", (a(true) or b(true)),
"and:", (a(false) and b(true)),
"or:", (a(false) or b(true))</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="sh">$ jq -r -n -f Short-circuit-evaluation.jq
and:
" a(true)"
Line 1,756 ⟶ 2,213:
" a(false)"
" b(true)"
true</langsyntaxhighlight>
 
=={{header|Julia}}==
Julia does have short-circuit evaluation, which works just as you expect it to:
 
<langsyntaxhighlight lang="julia">a(x) = (println("\t# Called a($x)"); return x)
b(x) = (println("\t# Called b($x)"); return x)
 
Line 1,769 ⟶ 2,226:
println("\nCalculating: y = a($i) || b($j)"); y = a(i) || b(j)
println("\tResult: y = $y")
end</langsyntaxhighlight>
{{out}}
<pre>Calculating: x = a(true) && b(true)
Line 1,808 ⟶ 2,265:
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.1.2
 
fun a(v: Boolean): Boolean {
Line 1,829 ⟶ 2,286:
println()
}
}</langsyntaxhighlight>
 
{{out}}
Line 1,857 ⟶ 2,314:
false || false = false
</pre>
 
=={{header|Lambdatalk}}==
Short-circuiting evaluation of boolean expressions has been the default since the first versions of lambdatalk.
<syntaxhighlight lang="scheme">
{def A {lambda {:bool} :bool}} -> A
{def B {lambda {:bool} :bool}} -> B
 
{and {A true} {B true}} -> true
{and {A true} {B false}} -> false
{and {A false} {B true}} -> false
{and {A false} {B false}} -> false
 
{or {A true} {B true}} -> true
{or {A true} {B false}} -> true
{or {A false} {B true}} -> true
{or {A false} {B false}} -> false
</syntaxhighlight>
 
Some more words about short-circuit evaluation. Lambdatalk comes with the {if "bool" then "one" else "two"} special form where "one" or "two" are not evaluated until "bool" is. This behaviour prevents useless computing and allows recursive processes. For instance, the naïve fibonacci function quickly leads to extensive computings.
<syntaxhighlight lang="scheme">
 
{def fib
{lambda {:n}
{if {< :n 2}
then 1
else {+ {fib {- :n 1}} {fib {- :n 2}}}}}}
-> fib
 
1) Using the if special form:
 
{if true then {+ 1 2} else {fib 29}}
-> 3 // {fib 29} is not evaluated
 
{if false then {+ 1 2} else {fib 29}}
-> 832040 // {fib 29} is evaluated in 5847ms
 
2) The if special form can't be simply replaced by a pair:
 
{def when {P.new {+ 1 2} {fib 29}}} // inner expressions are
{P.left {when}} -> 3 // both evaluated before
{P.right {when}} -> 832040 // and we don't want that
 
3) We can delay evaluation using lambdas:
 
{def when
{P.new {lambda {} {+ 1 2}} // will return a lambda
{lambda {} {fib 22}} }} // to be evaluated later
-> when
{{P.left {when}}} -> 3 // lambdas are evaluated
{{P.right {when}}} -> 832040 // after choice using {}
 
</syntaxhighlight>
 
=={{header|Liberty BASIC}}==
LB does not have short-circuit evaluation. Implemented with IFs.
<langsyntaxhighlight lang="lb">print "AND"
for i = 0 to 1
for j = 0 to 1
Line 1,894 ⟶ 2,404:
print ,"calls func b"
b = t
end function </langsyntaxhighlight>
{{out}}
<pre>AND
Line 1,930 ⟶ 2,440:
=={{header|LiveCode}}==
Livecode uses short-circuit evaluation.
<langsyntaxhighlight LiveCodelang="livecode">global outcome
function a bool
put "a called with" && bool & cr after outcome
Line 1,953 ⟶ 2,463:
end repeat
put outcome
end mouseUp</langsyntaxhighlight>
 
=={{header|Logo}}==
The <code>AND</code> and <code>OR</code> predicates may take either expressions which are all evaluated beforehand, or lists which are short-circuit evaluated from left to right only until the overall value of the expression can be determined.
<langsyntaxhighlight lang="logo">and [notequal? :x 0] [1/:x > 3]
(or [:x < 0] [:y < 0] [sqrt :x + sqrt :y < 3])</langsyntaxhighlight>
 
=={{header|Lua}}==
<langsyntaxhighlight lang="lua">function a(i)
print "Function a(i) called."
return i
Line 1,977 ⟶ 2,487:
i = false
x = a(i) and b(i); print ""
y = a(i) or b(i)</langsyntaxhighlight>
 
=={{header|M2000 Interpreter}}==
<syntaxhighlight lang="m2000 interpreter">
Module Short_circuit_evaluation {
function a(a as boolean) {
=a
doc$<=format$(" Called function a({0}) -> {0}", a)+{
}
}
function b(b as boolean) {
=b
doc$<=format$(" Called function b({0}) -> {0}", b)+{
}
}
boolean T=true, F, iv, jv
variant L=(F, T), i, j
i=each(L)
global doc$ : document doc$
while i
j=each(L)
while j
(iv, jv)=(array(i), array(j))
doc$<=format$("Calculating x = a({0}) and b({1}) -> {2}", iv, jv, iv and jv)+{
}
x=if(a(iv)->b(jv), F)
doc$<=format$("x={0}", x)+{
}+ format$("Calculating y = a({0}) or b({1}) -> {2}", iv, jv, iv or jv)+{
}
y=if(a(iv)->T, b(jv))
doc$<=format$("y={0}", y)+{
}
end while
end while
clipboard doc$
report doc$
}
Short_circuit_evaluation
</syntaxhighlight>
{{out}}
<pre>
Calculating x = a(False) and b(False) -> False
Called function a(False) -> False
x=False
Calculating y = a(False) or b(False) -> False
Called function a(False) -> False
Called function b(False) -> False
y=False
 
Calculating x = a(False) and b(True) -> False
Called function a(False) -> False
x=False
Calculating y = a(False) or b(True) -> True
Called function a(False) -> False
Called function b(True) -> True
y=True
 
Calculating x = a(True) and b(False) -> False
Called function a(True) -> True
Called function b(False) -> False
x=False
Calculating y = a(True) or b(False) -> True
Called function a(True) -> True
y=True
 
Calculating x = a(True) and b(True) -> True
Called function a(True) -> True
Called function b(True) -> True
x=True
Calculating y = a(True) or b(True) -> True
Called function a(True) -> True
y=True
 
</pre>
 
=={{header|Maple}}==
Built-in short circuit evaluation
<langsyntaxhighlight Maplelang="maple">a := proc(bool)
printf("a is called->%s\n", bool):
return bool:
Line 1,996 ⟶ 2,580:
y := a(i) or b(j):
od:
od:</langsyntaxhighlight>
{{Out|Output}}
<pre>calculating x := a(i) and b(j)
Line 2,019 ⟶ 2,603:
b is called->false</pre>
 
=={{header|Mathematica}}/{{header|Wolfram Language}}==
Mathematica has built-in short-circuit evaluation of logical expressions.
<langsyntaxhighlight Mathematicalang="mathematica">a[in_] := (Print["a"]; in)
b[in_] := (Print["b"]; in)
 
a[False] && b[True]
a[True] || b[False]</langsyntaxhighlight>
Evaluation of the preceding code gives:
<pre>a
a
False
 
a
True</pre>
</pre>
Whereas evaluating this:
<langsyntaxhighlight Mathematicalang="mathematica">a[True] && b[False]</langsyntaxhighlight>
Gives:
<pre>a
a
b
False</pre>
</pre>
 
=={{header|MATLAB}} / {{header|Octave}}==
Short-circuit evalation is done in logical AND (&&) and logical OR (||) operators:
<langsyntaxhighlight lang="matlab"> function x=a(x)
printf('a: %i\n',x);
end;
Line 2,055 ⟶ 2,633:
a(0) && b(1)
a(1) || b(1)
a(0) || b(1)</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="matlab"> > a(1) && b(1);
a: 1
b: 1
Line 2,066 ⟶ 2,644:
> a(0) || b(1);
a: 0
b: 1</langsyntaxhighlight>
 
=={{header|Modula-2}}==
<langsyntaxhighlight lang="modula2">MODULE ShortCircuit;
FROM FormatString IMPORT FormatString;
FROM Terminal IMPORT WriteString,WriteLn,ReadChar;
Line 2,110 ⟶ 2,688:
Print(TRUE,FALSE);
ReadChar
END ShortCircuit.</langsyntaxhighlight>
 
=={{header|MUMPS}}==
MUMPS evaluates every expression it encounters, so we have to use conditional statements to do a short circuiting of the expensive second task.
<langsyntaxhighlight MUMPSlang="mumps">SSEVAL1(IN)
WRITE !,?10,$STACK($STACK,"PLACE")
QUIT IN
Line 2,135 ⟶ 2,713:
WRITE !,$SELECT(Z:"TRUE",1:"FALSE")
KILL Z
QUIT</langsyntaxhighlight>
{{out}}
<pre>USER>D SSEVAL3^ROSETTA
Line 2,155 ⟶ 2,733:
SSEVAL2+1^ROSETTA +3
TRUE</pre>
 
=={{header|Nanoquery}}==
Nanoquery does not short-circuit by default, so short-circuit logic functions have been implemented by nested ifs.
<syntaxhighlight lang="nanoquery">def short_and(bool1, bool2)
global a
global b
if a(bool1)
if b(bool2)
return true
else
return false
end
else
return false
end
end
 
def short_or(bool1, bool2)
if a(bool1)
return true
else
if b(bool2)
return true
else
return false
end
end
end
 
def a(bool)
println "a called."
return bool
end
 
def b(bool)
println "b called."
return bool
end
 
println "F and F = " + short_and(false, false) + "\n"
println "F or F = " + short_or(false, false) + "\n"
 
println "F and T = " + short_and(false, true) + "\n"
println "F or T = " + short_or(false, true) + "\n"
 
println "T and F = " + short_and(true, false) + "\n"
println "T or F = " + short_or(true, false) + "\n"
 
println "T and T = " + short_and(true, true) + "\n"
println "T or T = " + short_or(true, true) + "\n"</syntaxhighlight>
{{out}}
<pre>a called.
F and F = false
 
a called.
b called.
F or F = false
 
a called.
F and T = false
 
a called.
b called.
F or T = true
 
a called.
b called.
T and F = false
 
a called.
T or F = true
 
a called.
b called.
T and T = true
 
a called.
T or T = true
</pre>
 
=={{header|Nemerle}}==
<langsyntaxhighlight Nemerlelang="nemerle">using System.Console;
 
class ShortCircuit
Line 2,187 ⟶ 2,844:
WriteLine("False || False: {0}", a(f) || b(f));
}
}</langsyntaxhighlight>
{{out}}
<syntaxhighlight lang="text">a
b
True && True : True
Line 2,208 ⟶ 2,865:
a
b
False || False: False</langsyntaxhighlight>
 
=={{header|NetRexx}}==
{{trans|ooRexx}}
Like [[OoRexx]], [[NetRexx]] allows a list of expressions in the condition part of <tt>If</tt> and <tt>When</tt>. Evaluation ends with the first of these expressions resulting in <tt>boolean true</tt>.
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref symbols nobinary
 
Line 2,242 ⟶ 2,899:
Say '--b returns' state
Return state
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,264 ⟶ 2,921:
 
=={{header|Nim}}==
Nim produces code which uses short-circuit evaluation.
<lang nim>proc a(x): bool =
<syntaxhighlight lang="nim">proc a(x): bool =
echo "a called"
result = x
 
proc b(x): bool =
echo "b called"
Line 2,272 ⟶ 2,931:
 
let x = a(false) and b(true) # echoes "a called"
let y = a(true) or b(true) # echoes "a called"</syntaxhighlight>
 
let y = a(true) or b(true) # echoes "a called"</lang>
 
=={{header|Objeck}}==
In Objeck the Boolean operators <code>&</code> and <code>|</code> short circuit.
<langsyntaxhighlight lang="objeck">class ShortCircuit {
function : a(a : Bool) ~ Bool {
"a"->PrintLine();
Line 2,309 ⟶ 2,967:
"T or T = {$result}"->PrintLine();
}
}</langsyntaxhighlight>
 
=={{header|OCaml}}==
<langsyntaxhighlight lang="ocaml">let a r = print_endline " > function a called"; r
let b r = print_endline " > function b called"; r
 
Line 2,335 ⟶ 2,993:
print_endline "==== Testing or ====";
test_this test_or;
;;</langsyntaxhighlight>
{{out}}
==== Testing and ====
Line 2,359 ⟶ 3,017:
> function a called
> function b called
 
=={{header|Ol}}==
<syntaxhighlight lang="scheme">
(define (a x)
(print " (a) => " x)
x)
 
(define (b x)
(print " (b) => " x)
x)
 
; and
(print " -- and -- ")
(for-each (lambda (x y)
(print "let's evaluate '(a as " x ") and (b as " y ")':")
(let ((out (and (a x) (b y))))
(print " result is " out)))
'(#t #t #f #f)
'(#t #f #t #f))
 
; or
(print " -- or -- ")
(for-each (lambda (x y)
(print "let's evaluate '(a as " x ") or (b as " y ")':")
(let ((out (or (a x) (b y))))
(print " result is " out)))
'(#t #t #f #f)
'(#t #f #t #f))
</syntaxhighlight>
{{Out}}
<pre>
-- and --
let's evaluate '(a as #true) and (b as #true)':
(a) => #true
(b) => #true
result is #true
let's evaluate '(a as #true) and (b as #false)':
(a) => #true
(b) => #false
result is #false
let's evaluate '(a as #false) and (b as #true)':
(a) => #false
result is #false
let's evaluate '(a as #false) and (b as #false)':
(a) => #false
result is #false
-- or --
let's evaluate '(a as #true) or (b as #true)':
(a) => #true
result is #true
let's evaluate '(a as #true) or (b as #false)':
(a) => #true
result is #true
let's evaluate '(a as #false) or (b as #true)':
(a) => #false
(b) => #true
result is #true
let's evaluate '(a as #false) or (b as #false)':
(a) => #false
(b) => #false
result is #false
</pre>
 
=={{header|ooRexx}}==
ooRexx allows a list of expressions in the condition part of If and When.
Evaluation ends with the first of these expressions resulting in .false (or 0).
<langsyntaxhighlight lang="oorexx">Parse Version v
Say 'Version='v
If a() | b() Then Say 'a and b are true'
Line 2,378 ⟶ 3,098:
a: Say 'a returns .true'; Return .true
b: Say 'b returns 1'; Return 1
</syntaxhighlight>
</lang>
{{out}}
<pre>Version=REXX-ooRexx_4.2.0(MT)_32-bit 6.04 22 Feb 2014
Line 2,398 ⟶ 3,118:
=={{header|Oz}}==
Oz' <code>andthen</code> and <code>orelse</code> operators are short-circuiting, as indicated by their name. The library functions <code>Bool.and</code> and <code>Bool.or</code> are not short-circuiting, on the other hand.
<langsyntaxhighlight lang="oz">declare
fun {A Answer}
AnswerS = {Value.toVirtualString Answer 1 1}
Line 2,422 ⟶ 3,142:
Y = {A I} orelse {B J}
end
end</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="oz">Calculating: X = {A I} andthen {B J}
% Called function {A false} -> false
Calculating: Y = {A I} orelse {B J}
Line 2,446 ⟶ 3,166:
% Called function {B true} -> true
Calculating: Y = {A I} orelse {B J}
% Called function {A true} -> true</langsyntaxhighlight>
 
=={{header|PARI/GP}}==
Note that <code>|</code> and <code>&</code> are deprecated versions of the GP short-circuit operators.
<langsyntaxhighlight lang="parigp">a(n)={
print(a"("n")");
a
Line 2,463 ⟶ 3,183:
and(A,B)={
a(A) && b(B)
};</langsyntaxhighlight>
 
=={{header|Pascal}}==
===Standard Pascal===
Standard Pascal doesn't have native short-circuit evaluation.
<langsyntaxhighlight lang="pascal">program shortcircuit(output);
 
function a(value: boolean): boolean;
Line 2,508 ⟶ 3,228:
scandor(true, false);
scandor(true, true);
end.</langsyntaxhighlight>
 
===Turbo Pascal===
Turbo Pascal allows short circuit evaluation with a compiler switch:
<langsyntaxhighlight lang="pascal">program shortcircuit;
 
function a(value: boolean): boolean;
Line 2,543 ⟶ 3,263:
scandor(true, false);
scandor(true, true);
end.</langsyntaxhighlight>
===Extended Pascal===
The extended Pascal standard introduces the operators <code>and_then</code> and <code>or_else</code> for short-circuit evaluation.
<langsyntaxhighlight lang="pascal">program shortcircuit(output);
 
function a(value: boolean): boolean;
Line 2,576 ⟶ 3,296:
scandor(true, false);
scandor(true, true);
end.</langsyntaxhighlight>
Note: GNU Pascal allows <code>and then</code> and <code>or else</code> as alternatives to <code>and_then</code> and <code>or_else</code>.
 
=={{header|Perl}}==
Perl uses short-circuit boolean evaluation.
<langsyntaxhighlight Perllang="perl">sub a { print 'A'; return $_[0] }
sub b { print 'B'; return $_[0] }
 
Line 2,594 ⟶ 3,314:
 
# Test and display
test();</langsyntaxhighlight>
{{out}}
<pre>a(1) && b(1): AB
Line 2,604 ⟶ 3,324:
a(0) || b(1): AB
a(0) || b(0): AB</pre>
 
=={{header|Perl 6}}==
{{Works with|rakudo|2018.03}}
<lang perl6>use MONKEY-SEE-NO-EVAL;
 
sub a ($p) { print 'a'; $p }
sub b ($p) { print 'b'; $p }
 
for 1, 0 X 1, 0 -> ($p, $q) {
for '&&', '||' -> $op {
my $s = "a($p) $op b($q)";
print "$s: ";
EVAL $s;
print "\n";
}
}</lang>
{{out}}
<pre>a(1) && b(1): ab
a(1) || b(1): a
a(1) && b(0): ab
a(1) || b(0): a
a(0) && b(1): a
a(0) || b(1): ab
a(0) && b(0): a
a(0) || b(0): ab</pre>
 
=={{header|Phix}}==
In Phix all expressions are short circuited<lang Phix>function a(integer i)
<!--<syntaxhighlight lang="phix">(phixonline)-->
printf(1,"a ")
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
return i
<span style="color: #008080;">function</span> <span style="color: #000000;">a</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">)</span>
end function
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"a "</span><span style="color: #0000FF;">)</span>
 
<span style="color: #008080;">return</span> <span style="color: #000000;">i</span>
function b(integer i)
<span style="color: #008080;">end</span> <span style="color: #008080;">function</span>
printf(1,"b ")
return i
<span style="color: #008080;">function</span> <span style="color: #000000;">b</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">)</span>
end function
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"b "</span><span style="color: #0000FF;">)</span>
 
<span style="color: #008080;">return</span> <span style="color: #000000;">i</span>
for z=0 to 1 do
<span style="color: #008080;">end</span> <span style="color: #008080;">function</span>
for i=0 to 1 do
for j=0 to 1 do
<span style="color: #008080;">for</span> <span style="color: #000000;">z</span><span style="color: #0000FF;">=</span><span style="color: #000000;">0</span> <span style="color: #008080;">to</span> <span style="color: #000000;">1</span> <span style="color: #008080;">do</span>
if z then
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">0</span> <span style="color: #008080;">to</span> <span style="color: #000000;">1</span> <span style="color: #008080;">do</span>
printf(1,"a(%d) and b(%d) ",{i,j})
<span style="color: #008080;">for</span> <span style="color: #000000;">j</span><span style="color: #0000FF;">=</span><span style="color: #000000;">0</span> <span style="color: #008080;">to</span> <span style="color: #000000;">1</span> <span style="color: #008080;">do</span>
printf(1," => %d\n",a(i) and b(j))
<span style="color: #008080;">if</span> <span style="color: #000000;">z</span> <span style="color: #008080;">then</span>
else
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"a(%d) and b(%d) "</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">i</span><span style="color: #0000FF;">,</span><span style="color: #000000;">j</span><span style="color: #0000FF;">})</span>
printf(1,"a(%d) or b(%d) ",{i,j})
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" =&gt; %d\n"</span><span style="color: #0000FF;">,</span><span style="color: #000000;">a</span><span style="color: #0000FF;">(</span><span style="color: #000000;">i</span><span style="color: #0000FF;">)</span> <span style="color: #008080;">and</span> <span style="color: #000000;">b</span><span style="color: #0000FF;">(</span><span style="color: #000000;">j</span><span style="color: #0000FF;">))</span>
printf(1," => %d\n",a(i) or b(j))
end if<span style="color: #008080;">else</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"a(%d) or b(%d) "</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">i</span><span style="color: #0000FF;">,</span><span style="color: #000000;">j</span><span style="color: #0000FF;">})</span>
end for
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" =&gt; %d\n"</span><span style="color: #0000FF;">,</span><span style="color: #000000;">a</span><span style="color: #0000FF;">(</span><span style="color: #000000;">i</span><span style="color: #0000FF;">)</span> <span style="color: #008080;">or</span> <span style="color: #000000;">b</span><span style="color: #0000FF;">(</span><span style="color: #000000;">j</span><span style="color: #0000FF;">))</span>
end for
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
end for</lang>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<!--</syntaxhighlight>-->
{{Out}}
<pre>
Line 2,667 ⟶ 3,366:
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(de a (F)
(msg 'a)
F )
Line 2,680 ⟶ 3,379:
(println I Op J '-> (Op (a I) (b J))) ) )
'(NIL NIL T T)
'(NIL T NIL T) )</langsyntaxhighlight>
{{out}}
<pre>a
Line 2,704 ⟶ 3,403:
 
=={{header|Pike}}==
<langsyntaxhighlight Pikelang="pike">int(0..1) a(int(0..1) i)
{
write(" a\n");
Line 2,723 ⟶ 3,422:
write(" %d || %d\n", @args);
a(args[0]) || b(args[1]);
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,749 ⟶ 3,448:
 
=={{header|PL/I}}==
<langsyntaxhighlight lang="pli">short_circuit_evaluation:
procedure options (main);
declare (true initial ('1'b), false initial ('0'b) ) bit (1);
Line 2,783 ⟶ 3,482:
end;
end;
end short_circuit_evaluation;</langsyntaxhighlight>
{{out|Results}}
<pre>
Line 2,821 ⟶ 3,520:
=={{header|PowerShell}}==
PowerShell handles this natively.
<langsyntaxhighlight lang="powershell"># Simulated fast function
function a ( [boolean]$J ) { return $J }
Line 2,853 ⟶ 3,552:
( a $True ) -and ( b $False )
( a $True ) -and ( b $True )
} | Select TotalMilliseconds</langsyntaxhighlight>
{{out}}
<pre>True
Line 2,872 ⟶ 3,571:
Prolog has not functions but predicats succeed of fail.
Tested with SWI-Prolog. Should work with other dialects.
<langsyntaxhighlight Prologlang="prolog">short_circuit :-
( a_or_b(true, true) -> writeln('==> true'); writeln('==> false')) , nl,
( a_or_b(true, false)-> writeln('==> true'); writeln('==> false')) , nl,
Line 2,897 ⟶ 3,596:
b(X) :-
format('b(~w)~n', [X]),
X.</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight Prologlang="prolog">?- short_circuit.
a(true) or b(true)
a(true)
Line 2,936 ⟶ 3,635:
==> false
 
true.</langsyntaxhighlight>
 
=={{header|PureBasic}}==
Logical '''And''' &amp; '''Or''' operators will not evaluate their right-hand expression if the outcome can be determined from the value of the left-hand expression.
<langsyntaxhighlight PureBasiclang="purebasic">Procedure a(arg)
PrintN(" # Called function a("+Str(arg)+")")
ProcedureReturn arg
Line 2,959 ⟶ 3,658:
Next
Next
Input()</langsyntaxhighlight>
{{out}}
<pre>Calculating: x = a(0) And b(0)
Line 2,987 ⟶ 3,686:
=={{header|Python}}==
Pythons '''and''' and '''or''' binary, infix, boolean operators will not evaluate their right-hand expression if the outcome can be determined from the value of the left-hand expression.
<langsyntaxhighlight lang="python">>>> def a(answer):
print(" # Called function a(%r) -> %r" % (answer, answer))
return answer
Line 3,026 ⟶ 3,725:
# Called function b(True) -> True
Calculating: y = a(i) or b(j)
# Called function a(True) -> True</langsyntaxhighlight>
Pythons if ''expression'' can also be used to the same ends (but probably should not):
<langsyntaxhighlight lang="python">>>> for i in (False, True):
for j in (False, True):
print ("\nCalculating: x = a(i) and b(j) using x = b(j) if a(i) else False")
Line 3,059 ⟶ 3,758:
# Called function b(True) -> True
Calculating: y = a(i) or b(j) using y = b(j) if not a(i) else True
# Called function a(True) -> True</langsyntaxhighlight>
 
=={{header|Quackery}}==
 
Quackery does not include short-circuit evaluation, but it can be added by use of meta-control flow words (words wrapped in reverse brackets such as <code>]done[</code>.) For details see: [https://github.com/GordonCharlton/Quackery/blob/main/The%20Book%20of%20Quackery.pdf The Book of Quackery]
 
The short-circuit evaluation words <code>SC-and</code> and <code>SC-or</code> defined here are used thus: <code>[ a 1 SC-and b ]</code> and <code>[ a 1 SC-or b ]</code>. These presumes that the arguments to <code>a</code> and <code>b</code> are on the stack in the order <code>j i</code>.
 
The <code>1</code> preceding the word is required to indicate the number of arguments that <code>b</code> would consume from the stack if it were evaluated.
 
Extending the task to three functions, the third, <code>c</code> also consuming one argument <code>k</code> and returning a boolean, present on the stack underneath <code>j</code> and <code>i</code> would lead to the code <code>[ a 2 SC-and b 1 SC-and c ]</code> and <code>[ a 2 SC-or b 1 SC-or c ]</code>, where the <code>2</code> is the sum of the number of arguments consumed by <code>b</code> and <code>c</code>, and the <code>1</code> is the number of arguments consumed by <code>c</code>.
 
<code>SC-and</code> and <code>SC-or</code> can both be used in a single short-circuit evaluation nest with three or more functions. Evaluation is strictly left to right.
 
Quackery does not have variables, so no assignment is shown here. Words (functions) leave their results on the stack. If desired results can be moved to ancillary stacks, which include standing-in for variables amongst their functionality.
 
<syntaxhighlight lang="Quackery">
[ say "evaluating "
]this[ echo cr ] is ident ( --> )
 
[ iff say "true"
else say "false" ] is echobool ( b --> )
 
[ swap iff drop done
times drop
false ]done[ ] is SC-and ( b n --> )
 
[ swap not iff drop done
times drop
true ]done[ ] is SC-or ( b n --> )
 
[ ident
2 times not ] is a ( b --> b )
 
[ ident
4 times not ] is b ( b --> b )
 
[ say "i = "
dup echobool
say " AND j = "
dup echobool
cr
[ a 1 SC-and b ]
say "result is "
echobool cr cr ] is AND-demo ( --> )
 
[ say "i = "
dup echobool
say " OR j = "
dup echobool
cr
[ a 1 SC-or b ]
say "result is "
echobool
cr cr ] is OR-demo ( --> )
 
true true AND-demo
true false AND-demo
false true AND-demo
false false AND-demo
cr
true true OR-demo
true false OR-demo
false true OR-demo
false false OR-demo</syntaxhighlight>
 
{{out}}
 
<pre>i = true AND j = true
evaluating a
evaluating b
result is true
 
i = false AND j = false
evaluating a
result is false
 
i = true AND j = true
evaluating a
evaluating b
result is false
 
i = false AND j = false
evaluating a
result is false
 
 
i = true OR j = true
evaluating a
result is true
 
i = false OR j = false
evaluating a
evaluating b
result is true
 
i = true OR j = true
evaluating a
result is true
 
i = false OR j = false
evaluating a
evaluating b
result is false</pre>
 
 
=={{header|R}}==
The builtins <tt><nowiki>&&</nowiki></tt> and <tt>||</tt> will short circuit:
{{trans|Perl}}
<langsyntaxhighlight lang="r">a <- function(x) {cat("a called\n"); x}
b <- function(x) {cat("b called\n"); x}
 
Line 3,072 ⟶ 3,875:
call <- substitute(op(a(x),b(y)), row)
cat(deparse(call), "->", eval(call), "\n\n")
}))</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="r">a called
a(1) || b(1) -> TRUE
 
Line 3,100 ⟶ 3,903:
 
a called
a(0) && b(0) -> FALSE </langsyntaxhighlight>
Because R waits until function arguments are needed before evaluating them, user-defined functions can also short circuit.
<langsyntaxhighlight lang="r">switchop <- function(s, x, y) {
if(s < 0) x || y
else if (s > 0) x && y
else xor(x, y)
}</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="r">> switchop(-1, a(1), b(1))
a called
[1] TRUE
Line 3,121 ⟶ 3,924:
a called
b called
[1] TRUE</langsyntaxhighlight>
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">#lang racket
(define (a x)
(display (~a "a:" x " "))
Line 3,141 ⟶ 3,944:
(displayln `(or (a ,x) (b ,y)))
(or (a x) (b y))
(newline))</langsyntaxhighlight>
{{out}}
<pre>
Line 3,161 ⟶ 3,964:
a:#f b:#f
</pre>
 
=={{header|Raku}}==
(formerly Perl 6)
{{Works with|rakudo|2018.03}}
<syntaxhighlight lang="raku" line>use MONKEY-SEE-NO-EVAL;
 
sub a ($p) { print 'a'; $p }
sub b ($p) { print 'b'; $p }
 
for 1, 0 X 1, 0 -> ($p, $q) {
for '&&', '||' -> $op {
my $s = "a($p) $op b($q)";
print "$s: ";
EVAL $s;
print "\n";
}
}</syntaxhighlight>
{{out}}
<pre>a(1) && b(1): ab
a(1) || b(1): a
a(1) && b(0): ab
a(1) || b(0): a
a(0) && b(1): a
a(0) || b(1): ab
a(0) && b(0): a
a(0) || b(0): ab</pre>
 
=={{header|REXX}}==
The REXX language doesn't have native short circuits &nbsp; (it's specifically mentioned in the
language specifications that short-circuiting is '''not''' supported).
<br>short-circuiting is '''not''' supported).
<lang rexx>/*REXX programs demonstrates short-circuit evaluation testing (in an IF statement).*/
<syntaxhighlight lang="rexx">/*REXX programs demonstrates short─circuit evaluation testing (in an IF statement).*/
parse arg LO HI . /*obtain optional arguments from he CL.*/
parse arg LO HI . /*obtain optional arguments from the CL*/
if LO=='' | LO=="," then LO= -2 /*Not specified? Then use the default.*/
if HI=='' | HI=="," then HI= 2 /* " " " " " " */
Line 3,180 ⟶ 4,010:
/*──────────────────────────────────────────────────────────────────────────────────────*/
a: say ' A entered with:' arg(1); return abs( arg(1) // 2) /*1=odd, 0=even */
b: say ' B entered with:' arg(1); return arg(1) < 0 /*1=neg, 0=if not*/</langsyntaxhighlight>
'''{{out|output''' |text=&nbsp; when using the default inputs:}}
<pre>
B entered with: -2
Line 3,217 ⟶ 4,047:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
# Project : Short-circuit evaluation
 
Line 3,246 ⟶ 4,076:
b = t
return b
</syntaxhighlight>
</lang>
Output:
<pre>
Line 3,275 ⟶ 4,105:
=={{header|Ruby}}==
Binary operators are short-circuiting. Demonstration code:
<langsyntaxhighlight lang="ruby">def a( bool )
puts "a( #{bool} ) called"
bool
Line 3,292 ⟶ 4,122:
puts
end
end</langsyntaxhighlight>
{{out}}
<pre>
Line 3,325 ⟶ 4,155:
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang="runbasic">for k = 1 to 2
ao$ = word$("AND,OR",k,",")
print "========= ";ao$;" =============="
Line 3,348 ⟶ 4,178:
print chr$(9);"calls func b"
b = t
end function</langsyntaxhighlight>
<pre>========= AND ==============
a(0) AND b(0)
Line 3,374 ⟶ 4,204:
=={{header|Rust}}==
 
<langsyntaxhighlight lang="rust">fn a(foo: bool) -> bool {
println!("a");
foo
Line 3,392 ⟶ 4,222:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 3,421 ⟶ 4,251:
 
=={{header|Sather}}==
<langsyntaxhighlight lang="sather">class MAIN is
a(v:BOOL):BOOL is
#OUT + "executing a\n";
Line 3,446 ⟶ 4,276:
#OUT + "F or T = " + x + "\n\n";
end;
end;</langsyntaxhighlight>
 
=={{header|Scala}}==
<langsyntaxhighlight lang="scala">object ShortCircuit {
def a(b:Boolean)={print("Called A=%5b".format(b));b}
def b(b:Boolean)={print(" -> B=%5b".format(b));b}
Line 3,465 ⟶ 4,295:
println
}
}</langsyntaxhighlight>
{{out}}
<pre>Testing A=false AND B=false -> Called A=false
Line 3,477 ⟶ 4,307:
 
=={{header|Scheme}}==
<langsyntaxhighlight lang="scheme">>(define (a x)
(display "a\n")
x)
Line 3,511 ⟶ 4,341:
a
b
</syntaxhighlight>
</lang>
 
=={{header|Seed7}}==
<langsyntaxhighlight lang="seed7">$ include "seed7_05.s7i";
const func boolean: a (in boolean: aBool) is func
Line 3,544 ⟶ 4,374:
test(TRUE, FALSE);
test(TRUE, TRUE);
end func;</langsyntaxhighlight>
{{out}}
<pre>
Line 3,570 ⟶ 4,400:
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">func a(bool) { print 'A'; return bool }
func b(bool) { print 'B'; return bool }
 
Line 3,585 ⟶ 4,415:
 
# Test and display
test()</langsyntaxhighlight>
{{out}}
<pre>a(1) && b(1): AB
Line 3,595 ⟶ 4,425:
a(0) || b(1): AB
a(0) || b(0): AB</pre>
 
=={{header|Simula}}==
<langsyntaxhighlight lang="simula">BEGIN
 
BOOLEAN PROCEDURE A(BOOL); BOOLEAN BOOL;
Line 3,648 ⟶ 4,479:
TEST;
END.
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 3,664 ⟶ 4,495:
{{works with|GNU Smalltalk}}
The <code>and:</code> <code>or:</code> selectors are shortcircuit selectors but in order to avoid evaluation of the second operand, it must be a block: <code>a and: [ code ]</code> will evaluate the code only if a is true. On the other hand, <code>a and: b</code>, where b is an expression (not a block), behaves like the non-shortcircuit and (&amp;). (Same speech for or |)
<langsyntaxhighlight lang="smalltalk">Smalltalk at: #a put: nil.
Smalltalk at: #b put: nil.
 
Line 3,684 ⟶ 4,515:
('true and false = %1' %
{ (a value: true) and: [ b value: false ] })
displayNl.</langsyntaxhighlight>
 
=={{header|SNOBOL4}}==
Line 3,690 ⟶ 4,521:
 
The test statements below use a pattern constructed from the functions a( ) and b( ) and match it to the null string with deferred evaluation. This idiom allows the functions to self-report the expected short-circuit patterns.
<langsyntaxhighlight SNOBOL4lang="snobol4"> define('a(val)') :(a_end)
a out = 'A '
eq(val,1) :s(return)f(freturn)
Line 3,715 ⟶ 4,546:
out = 'F or T: '; null ? *a(0) | *b(1); nl()
out = 'F or F: '; null ? *a(0) | *b(0); nl()
end</langsyntaxhighlight>
{{out}}
<pre>T and T: A B
Line 3,729 ⟶ 4,560:
=={{header|Standard ML}}==
{{trans|OCaml}}
<langsyntaxhighlight lang="sml">fun a r = ( print " > function a called\n"; r )
fun b r = ( print " > function b called\n"; r )
 
Line 3,750 ⟶ 4,581:
test_this test_and;
print "==== Testing or ====\n";
test_this test_or;</langsyntaxhighlight>
{{out}}
==== Testing and ====
Line 3,779 ⟶ 4,610:
Stata always evaluates both arguments of operators & and |. Here is a solution with '''if''' statements.
 
<langsyntaxhighlight lang="stata">function a(x) {
printf(" a")
return(x)
Line 3,802 ⟶ 4,633:
printf("\n")
return((x,y))
}</langsyntaxhighlight>
 
'''Example'''
 
<langsyntaxhighlight lang="stata">: call(0,1)
and: a
or: a b
Line 3,820 ⟶ 4,651:
+---------+
1 | 1 1 |
+---------+</langsyntaxhighlight>
 
=={{header|Swift}}==
Short circuit operators are <nowiki>&&</nowiki> and ||.
<langsyntaxhighlight lang="swift">func a(v: Bool) -> Bool {
print("a")
return v
Line 3,849 ⟶ 4,680:
test(false, true)
test(true, false)
test(true, true)</langsyntaxhighlight>
{{out}}
<pre>
Line 3,883 ⟶ 4,714:
=={{header|Tcl}}==
The <code>&&</code> and <code>||</code> in the <code>expr</code> command support short-circuit evaluation. It is recommended that you always put expressions in braces so that and command or variable substitutions are applied at the right time rather than before the expression is evaluated at all. (Indeed, it is recommended that you do that anyway as unbraced expressions cannot be efficiently compiled.)
<langsyntaxhighlight lang="tcl">package require Tcl 8.5
proc tcl::mathfunc::a boolean {
puts "a($boolean) called"
Line 3,901 ⟶ 4,732:
puts ""; # Blank line for clarity
}
}</langsyntaxhighlight>
{{out}}Note that booleans may be written out words or numeric:
<pre>
Line 3,931 ⟶ 4,762:
 
=={{header|TXR}}==
<langsyntaxhighlight lang="txr">@(define a (x out))
@ (output)
a (@x) called
Line 3,965 ⟶ 4,796:
@(short_circuit_demo "0" "1")
@(short_circuit_demo "1" "0")
@(short_circuit_demo "1" "1")</langsyntaxhighlight>
{{out|Run}}
<pre>$ txr short-circuit-bool.txr
Line 3,999 ⟶ 4,830:
The ''&&'' and ''||'' operators use the exit status of each command. The ''true'' and ''false'' commands convert a string to an exit status; our code ''&& x=true || x=false'' converts an exit status to a string.
{{works with|Bourne Shell}}
<langsyntaxhighlight lang="bash">a() {
echo "Called a $1"
"$1"
Line 4,017 ⟶ 4,848:
echo " $i || $j is $y"
done
done</langsyntaxhighlight>
The output reveals that <nowiki>&&</nowiki> and || have short-circuit evaluation.
<pre>Called a false
Line 4,042 ⟶ 4,873:
==={{header|C Shell}}===
Between commands, ''&&'' and ''||'' have short-circuit evaluation. (The aliases for ''a'' and ''b'' must expand to a single command; these aliases expand to an ''eval'' command.)
<langsyntaxhighlight lang="csh">alias a eval \''echo "Called a \!:1"; "\!:1"'\'
alias b eval \''echo "Called b \!:1"; "\!:1"'\'
 
Line 4,053 ⟶ 4,884:
echo " $i || $j is $x"
end
end</langsyntaxhighlight>
Inside expressions, ''&&'' and ''||'' can short circuit some commands, but cannot prevent substitutions.
<langsyntaxhighlight lang="csh"># Succeeds, only prints "ok".
if ( 1 || { echo This command never runs. } ) echo ok
 
Line 4,062 ⟶ 4,893:
 
# Prints "error", then "ok".
if ( 1 || `echo error >/dev/stderr` ) echo ok</langsyntaxhighlight>
 
=={{header|VBA}}==
<langsyntaxhighlight lang="vb">Private Function a(i As Variant) As Boolean
Debug.Print "a: "; i = 1,
a = i
Line 4,098 ⟶ 4,929:
Debug.Print
End Sub
</langsyntaxhighlight>{{out}}<pre>=====AND=====
 
a: Onwaar = x
Line 4,113 ⟶ 4,944:
a: Waar = x
a: Waar = x</pre>
 
=={{header|Visual Basic .NET}}==
{{trans|c++}}
<langsyntaxhighlight lang="vbnet">Module Module1
 
Function A(v As Boolean) As Boolean
Line 4,143 ⟶ 4,975:
End Sub
 
End Module</langsyntaxhighlight>
{{out}}
<pre>a
Line 4,194 ⟶ 5,026:
 
=={{header|Visual FoxPro}}==
<langsyntaxhighlight lang="vfp">
*!* Visual FoxPro natively supports short circuit evaluation
CLEAR
Line 4,229 ⟶ 5,061:
RETURN v
ENDFUNC
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 4,241 ⟶ 5,073:
T F OR T a()
T T OR T a()
</pre>
 
=={{header|V (Vlang)}}==
<syntaxhighlight lang="Zig">
fn main() {
test_me(false, false)
test_me(false, true)
test_me(true, false)
test_me(true, true)
}
 
fn a(v bool) bool {
print("a")
return v
}
 
fn b(v bool) bool {
print("b")
return v
}
 
fn test_me(i bool, j bool) {
println("Testing a(${i}) && b(${j})")
print("Trace: ")
println("\nResult: ${a(i) && b(j)}")
 
println("Testing a(${i})} || b(${j})")
print("Trace: ")
println("\nResult: ${a(i) || b(j)}")
println("")
}
</syntaxhighlight>
 
{{out}}
<pre>
Testing a(false) && b(false)
Trace: a
Result: false
Testing a(false)} || b(false)
Trace: ab
Result: false
 
Testing a(false) && b(true)
Trace: a
Result: false
Testing a(false)} || b(true)
Trace: ab
Result: true
 
Testing a(true) && b(false)
Trace: ab
Result: false
Testing a(true)} || b(false)
Trace: a
Result: true
 
Testing a(true) && b(true)
Trace: ab
Result: true
Testing a(true)} || b(true)
Trace: a
Result: true
</pre>
 
=={{header|Wren}}==
Wren has the '''&&''' and '''||''' short-circuiting operators found in many C family languages.
<syntaxhighlight lang="wren">var a = Fn.new { |bool|
System.print(" a called")
return bool
}
 
var b = Fn.new { |bool|
System.print(" b called")
return bool
}
 
var bools = [ [true, true], [true, false], [false, true], [false, false] ]
for (bool in bools) {
System.print("a = %(bool[0]), b = %(bool[1]), op = && :")
a.call(bool[0]) && b.call(bool[1])
System.print()
}
 
for (bool in bools) {
System.print("a = %(bool[0]), b = %(bool[1]), op = || :")
a.call(bool[0]) || b.call(bool[1])
System.print()
}</syntaxhighlight>
 
{{out}}
<pre>
a = true, b = true, op = && :
a called
b called
 
a = true, b = false, op = && :
a called
b called
 
a = false, b = true, op = && :
a called
 
a = false, b = false, op = && :
a called
 
a = true, b = true, op = || :
a called
 
a = true, b = false, op = || :
a called
 
a = false, b = true, op = || :
a called
b called
 
a = false, b = false, op = || :
a called
b called
</pre>
 
=={{header|zkl}}==
<langsyntaxhighlight lang="zkl">fcn a(b){self.fcn.println(b); b}
fcn b(b){self.fcn.println(b); b}</langsyntaxhighlight>
{{out}}
<pre>
9,476

edits