Take an old idea, and write it in a new way, like a recursive counting function
This is a discussion on IDEA: Redo a common program in a creative way within the Contests Board forums, part of the Community Boards category; Take an old idea, and write it in a new way, like a recursive counting function...
Take an old idea, and write it in a new way, like a recursive counting function
we should make a really really cool Hello World program!!!![]()
hasafraggin shizigishin oppashigger...
we could have people judge it... [more qualified judges than in FD imho... perhaps the mods would judge...] in various categories... we should make it as portable with a standard [basic] gfx api, stuff like that...
hasafraggin shizigishin oppashigger...
Hmm....I got an idea for this...
Point of clarity - When you say creatative, does that mean just about anything goes as long as the result is as per a common program's output?
prelude first suggested this idea, and she named someone's recursive counting program as an example.
ie:
hmm... that's not as elegant as i would likeCode:int main () { int x; x = count(6); } int count (int x) { if (x == 0) return 1; else { printf("%d",x); return x-1; } }
but do you see my point? perhaps prelude can venture over and clarify things...![]()