The Daily Click ::. Forums ::. Non-Klik Coding Help ::. What's a good way to test out formulas?
 

Post Reply  Post Oekaki 
 

Posted By Message

Muz



Registered
  14/02/2002
Points
  6499

VIP MemberI'm on a BoatI am an April FoolHonored Admin Alumnus
27th March, 2008 at 22:02:39 -

Is there a programming language that's better suited to testing out lots of formulas that others? I have a klik game that has a lot of long formulas, but well.. MMF makes it difficult to put in only one variable from a file, much worse to keep changing a few of them.

 
Disclaimer: Any sarcasm in my posts will not be mentioned as that would ruin the purpose. It is assumed that the reader is intelligent enough to tell the difference between what is sarcasm and what is not.

Image

Cecilectomy

noPE

Registered
  19/03/2005
Points
  305

Has Donated, Thank You!VIP MemberWeekly Picture Me This Winner!Cardboard BoxGhostbuster!Pokemon Ball!ComputerBox RedSanta HatSnowman
I am an April Fool
27th March, 2008 at 22:10:35 -

get a graphing/scientific calculator lol. they can do all sorts of functions and formulas, arrays/matrices, lists/coordinates, graphing. the ti series calculators (ti83 ti84 ti89 etc) have a built in BASIC language, which i used to use a lot, and that i use during my programming course tests.

 
n/a

Muz



Registered
  14/02/2002
Points
  6499

VIP MemberI'm on a BoatI am an April FoolHonored Admin Alumnus
28th March, 2008 at 02:55:11 -

I've got one of those, but I don't like remembering what A-Z stands for That and I don't know how to make it load a set of variables quickly.

 
Disclaimer: Any sarcasm in my posts will not be mentioned as that would ruin the purpose. It is assumed that the reader is intelligent enough to tell the difference between what is sarcasm and what is not.

Image

DaVince

This fool just HAD to have a custom rating

Registered
  04/09/2004
Points
  7998

Game of the Week WinnerClickzine StaffHas Donated, Thank You!Cardboard BoxDos Rules!
16th April, 2008 at 10:58:10 -

I heard Perl is a good one for stuff like this, but I never used it so I wouldn't know. You could also use something like the JavaScript commandline interpreter (I like using that one for some stuff like calculations). You can do stuff like this with it:

var x = 4, y = 6;
x * y;


And it'd print the result of x*y.
EDIT: Python would work well for this purpose too:

x = 4
y = 6
print(x*y)




Another edit: Looks like I'm a bit late replying.

Image Edited by the Author.

 
Old member (~2004-2007).
   

Post Reply



 



Advertisement

Worth A Click