vote up 3 vote down star
1

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)

flag

3  
How would your program will run ? Stand-alone, in browser, command line ? Would it get distributed to users or it will be run on your computer ? – Billy Jun 11 at 10:07

12 Answers

vote up 5 vote down check

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).

link|flag
vote up 1 vote down

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

link|flag
1  
assembly is very platform-dependent – Zydeco Jun 11 at 10:01
sure, but 8k is a pretty low limit, so I'm giving him options – Glen Jun 11 at 10:05
I agree that if all that's needed is simple math (meaning essentially no libraries, I/O, etc), C is the way to go. – Zarkonnen Jun 11 at 10:16
vote up 2 vote down

Would browser based JavaScript be an option? Lightweight and runs on almost all platforms via browser.

link|flag
Good call - I missed that one and it was really obvious! – David Robbins Jun 11 at 10:03
Err, didn't he write that no frameworks allowed? If a web browser isn't a framework, I don't know what is. – Joonas Pulakka Jun 11 at 10:06
Nope, can't go there. I'm actually a web designer myself so its the first thing I thought of. – Jack Mills Jun 11 at 10:07
if webbrowser is framework for javascript, then CPU is framework for machine code ;-) – lubos hasko Jun 11 at 11:48
@mad-j -- how is the browser a framework? At the end of the day code needs to run sowewhere! – Conrad Jun 11 at 15:52
vote up 1 vote down

Are you thinking of something like pico?

link|flag
vote up 3 vote down

Lua is cross platform and extremely light weight.

link|flag
light, but not light enough. It's a 50k binary - though it could be hacked lower by removing what you don't need. – SpliFF Jun 11 at 10:34
vote up 0 vote down

Not sure what you mean by framework??

python

why?

  1. It comes installed on my linux distributions, OSX and can be packaged as a native executable on windows. In other words the user of your app won't have to install anything
  2. It's really easy to learn.
link|flag
windows doesn't come with python, so even if the py script is < 8kb, the entire thing will be a few MB's. – lyrae Jun 11 at 10:46
ahh that's true, didn't think of that. – Ed Sykes Jun 11 at 11:13
vote up 0 vote down

What about adobe AIR. You can develop using javascript anf make it a desktop application.

link|flag
vote up 3 vote down

Which platforms are the program targeting?

So far, we have the following requirements:

  • Program must be under 8 kilobytes.
  • Must be platform-independent.
  • No frameworks allowed.

Here are some questions:

  • Can the 8 KB program be a script for a scripting language?
  • How big can the runtime environment for the program be?
  • Should the program be native code on its own?
  • Which target platforms should the code run on?
  • Is cross-compiling the code for each platform an option?

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.

link|flag
You missed one of the requirements: 'no frameworks allowed', so I guess a scripting language doesn't count... – fretje Jun 11 at 10:27
@fretje: I'm not quite sure a scripting runtime can be considered a "framework", but that's an additional requirement that was mentioned, so I'll add it to the answer. Thank you for pointing that out! :) – coobird Jun 11 at 10:42
The program is targeting Linux and windows, I doubt I'd need to target anything else. No scripting languages allowed, really the program needs to be a standalone executable. I'll find out about the other questions – Jack Mills Jun 11 at 14:49
vote up 1 vote down

dc

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.

link|flag
vote up 0 vote down

Bespin from Mozzila is an online environment. So it is, by definition, platform independent. Try at https://bespin.mozilla.com/

link|flag
vote up 1 vote down

What about Forth?

link|flag
vote up 0 vote down

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).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.