Module

Examples.FibonacciDemo

Package
purescript-yoga-om-workerbees
Repository
rowtype-yoga/purescript-yoga-om-workerbees

#FibInput Source

type FibInput = { n :: Int }

Simple console demo of Fibonacci calculation using worker pool

This demonstrates:

  • Creating a worker pool
  • Distributing work across multiple threads
  • Collecting results
  • Proper cleanup

#FibOutput Source

type FibOutput = { result :: Int, thread :: Int }

#fibDemo Source