Talk:CounterClockWise

From Esolang
Jump to navigation Jump to search

how can you know

/22c

is 2c/2 or c/22? use ( and ) ? --Cycwin (talk) 12:13, 10 July 2025 (UTC)

how to say at the same time or up to down for the interpreter

title.....?--Cycwin (talk) 11:37, 11 July 2025 (UTC)

tc proof?

lets simulate bct. we have three counters, n , p, s. n is the data, p is 10 pows the length of data and s is the step. in the data, 0 should be 1 and 1 should be 2. we know we have +-*/%. and i will use middle expression below.r is the index of command. it isnt a variable. command 0:

n = n : ( r - s ? n ! n%p . n )
p = p : ( r - s ? p ! p/10 . p )

command 10:

n = n : ( r - s ? n ! ( (n - n % p) / p - 2 ? n ! n * 10 + 1 . n ) . n,)
p = p : ( r - s ? p ! p*10 . p)

command 11:

n = n : ( r - s ? n ! ( (n - n % p) / p - 2 ? n ! n * 10 + 2 . n ) . n )
p = p : ( r - s ? p ! p*10 . p )

at the start:

s = 0 : s + 1