It seems remarkably un-C-like to me. Sure, it has a few syntatical similarities to C like the for and while loops, but so does perl. The C standard library functions aren't there, the ones that are have different names (strlen vs. strLength). The only type is var. You do no memory management at all. The list goes on and on, this is not a C-like language any more than perl is.
" This is false, the C99 standard allows for arrays to have a variable index.