Frost is an interpreted structured programming language based on C and Objective-C. It has dynamically typed variables, named function parameters, implicit memory allocation, and automatic garbage collection through reference counting (for arrays). As any major interpreted language, you can easily create bindings of your C library functions to Frost.
Its interpreter is written in C, and it only uses libC and POSIX system calls (Lex and Yacc are not required). You can easily compile...