Farey sequence: Difference between revisions

m
m (→‎{{header|jq}}: include)
Line 1,764:
'''Also works with gojq, the Go implementation of jq, and with fq.'''
 
This solution uses two jq functions from the [[Arithmetic/Rational#jq]] page,;
andthey can be included using jq's `include` directive as shown here.
<syntaxhighlight lang=jq>
include "rational" ; # actually, only `r/2` and `gcd/2` are actually needed
Line 1,823:
F1000: 304193 members
</pre>
 
 
=={{header|Julia}}==
2,479

edits