repl.txt (414B)
1 2 {{alias}}( a, b ) 3 Tests if two numbers are coprime. 4 5 Parameters 6 ---------- 7 a: number 8 First value. 9 10 b: number 11 Second value. 12 13 Returns 14 ------- 15 bool: boolean 16 Boolean indicating whether the values are coprime. 17 18 Examples 19 -------- 20 > var bool = {{alias}}( 14.0, 15.0 ) 21 true 22 > bool = {{alias}}( 14.0, 21.0 ) 23 false 24 25 See Also 26 -------- 27