From 4c4eb1bd8f003b3b57707badd2dd089ed193a896 Mon Sep 17 00:00:00 2001 From: wukong Date: Fri, 10 Apr 2026 23:46:12 -0700 Subject: renamed fir window generators; minor edits to whitespace and comments for more consistent style; --- fib.awk | 3 +++ 1 file changed, 3 insertions(+) (limited to 'fib.awk') diff --git a/fib.awk b/fib.awk index 7baef76..01cb8ce 100644 --- a/fib.awk +++ b/fib.awk @@ -1,6 +1,9 @@ #!/usr/bin/awk -f ### fib.awk +# print nth Fibonacci number, based on R. Hamming's solution to a diff eqn +# form of the sequence + BEGIN { ARGV[1] ? n = ARGV[1] : n = 0 -- cgit v1.2.3