1
vote
1answer
47 views

How to make a simple predicate engine

I have a task in which user can: 1. Form any number of points any coordinates; 2. Delete points according to a criterion. I realized: 1. The case of a simple criterion (>, <, =, >= etc.). 2. The ...
2
votes
3answers
206 views

Is it possible to write scripting language that translates to C code?

I have an idea to create scripting language which will make people to program easier doing a lot of macros, functions, simpler function names everything more simpler for simple person to work with. ...
14
votes
4answers
2k views

Clean, self-contained VM implemented in C and under 100-200K compiled code size?

I'm looking for a VM with the following features: Small compiled code footprint (under 200K). No external dependencies. Unicode (or raw) string support. Clean code/well organized. C(99) code, NOT ...
1
vote
10answers
300 views

Going for an scripting language from C world

I came from a C-Java-C# world... where the parentheses were VIP citizens and types were loved by everyone : ) Sometimes I need to develop some piece of code to automatize a repetitive task, convert ...