I need to write an extremely lightweight program (trying to get below 8Kb) that performs some simple math. The language I use needs to also be platform independent. Which language do you think would work the best (Oh and no frameworks allowed)
|
1
|
|||||
|
|
|
C. Of course you need to compile separately for each platform, but other than that, it's quite light, and platform-independent (or multiplatform, whichever expression you prefer). |
||
|
|
|
|
c or assembly (though you'll need to compile for each platform) TCL is a scripting language that's cross-platform (not sure how lightweight it is) I'd suggest Java but the VM probably thrashes your size requirements |
||
|
|
Would browser based JavaScript be an option? Lightweight and runs on almost all platforms via browser. |
||||||||||
|
|
|
Are you thinking of something like pico? |
||
|
|
|
|
Lua is cross platform and extremely light weight. |
||
|
|
|
Not sure what you mean by framework?? python why?
|
||
|
|
What about adobe AIR. You can develop using javascript anf make it a desktop application. |
||
|
|
|
|
Which platforms are the program targeting? So far, we have the following requirements:
Here are some questions:
The questions that I've presented are going to affect the desirable options. If the program must be 8 kilobytes with the runtime environment, then there really isn't much of a choice other than compiling against the target environment. If the target is an embedded device, or non-x86, then its likely that the choices will be further restricted. Small embeddable langugages such as Lua can still be used (written in C), but that would require a fairly large "runtime" for the script to execute. If cross-compiling to the targets are an option, then writing a program in C and compiling to each target platform will probably yield fairly small native programs. With the current requirements, there are a few questions that need to be addressed in providing a good comprehensive answer. Other than that, the best that can be done is a brainstorming of options that may or may not lead to a desirable solution. |
||||||
|
|
|
It's basically an overblown calculator but it's 25K and zips down to 12K. It also does some string operations, macros and runs external processes. You won't find much smaller without writing it yourself. Source and win32 binaries available. |
|||
|
|
|
|
Bespin from Mozzila is an online environment. So it is, by definition, platform independent. Try at https://bespin.mozilla.com/ |
||
|
|
|
|
What about Forth? |
||
|
|
|
|
Even C requires a runtime. Only realistic answer to this question is dc, or even a custom calculator that executes scripts, implemented in C. (Such a calculator could be smaller than dc, if it doesn't depend on arbituary precision). |
||
|
|
