Intersecting number wheels: Difference between revisions

Content added Content deleted
(Realize in F#)
Line 143:
 
=={{header|F_Sharp|F#}}==
<lang fsharp>
// WheeleWheels within wheels. Nigel Galloway: September 30th., 2019.
let N(n)=fun()->n
let wheel(n:(unit->int)[])=let mutable g= -1 in (fun()->g<-(g+1)%n.Length; n.[g]())
Line 170 ⟶ 171:
1 3 5 1 4 3 1 4 5 1 3 4 1 3 5 1 4 3 1 4 5
</pre>
 
=={{header|Factor}}==
An attempt has been made to simplify the interface as much as possible by creating a natural literal syntax for number wheel groups. This should be useful for exploring these types of sequences in the future.