I'm bored as fuck at work implementing fizzbuzz in fish in Termux on my phone. I learned a while ago that I could run curl on a whole list of webpages that were numbered by putting (seq $firstpage $lastpage) in place of the page number in the URL, frustratingly fish's math does not work the same way.
curl https://example.org/(seq 1 3)/ is equivalent to curl https://example.org/1/ ; curl https://example.org/2/ ; curl https://example.org/3/. math (seq 1 3) % 2 is equivalent to math 1 2 3 % 2, which does not work & is also not the equation I want!
