© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Bright Scripters
Taking BrightSign programming to the next level
' https://projecteuler.net/problem=2 sub main() n = 1 fibn = fib(n) sum = 0 while fibn < 4000000 if ( fibn mod 2 ) = 0 sum = sum + fibn end if n = n + 1 fibn = fib(n) end while p...
No responses yet.