Count counters

From Esolang
Jump to navigation Jump to search

Count counters is a programming language that uses counters that count after a certain number of firings to do stuff

Things you want to know

Instructions

"*" always counts

* >returns 1,1,1,1,1,1,1,1...

"(n)" counts every n times

(2) >returns 0,2,0,2,0,2...

"[n)" uses the counter on the [ side to count every times it does that n

(2)[4) >returns 0,2,0,2,0,2,0,6,0,2,0,2,0,2,0,6...

"(n]" does the same thing but on the ] side

(2](2) >returns 0,2,0,4,0,2,0,4...