Hey I've learned a lot of code types and I haven't seen a tut on this. I kinda understand it then I kinda don't. I'm asking if I can get a link to a tut or if someone could make one.
... You do realize, you don't use this so called "Pseudo coding" to do what you think you do... right? I don't even know what it is tbh, so... goodluck with this.
^^ didn´t you already find a dvar tut to learn pseudo coding?
Does anybody have one?
this is just like pseudo coding on any other thing. usually people just learn how to code and use pseudo code to explain to others in generalities rather than specifics.
learn to code, then you can pseudo code.
Quote from: hetoan2 on July 29, 2012, 04:14:33 PM
this is just like pseudo coding on any other thing. usually people just learn how to code and use pseudo code to explain to others in generalities rather than specifics.
learn to code, then you can pseudo code.
I already know how to code. Just not this. Thanks though.
What Hetoan is trying to convey here, or so I would take it, is that psuedo coding is a way to "teach" others how to code, it isn't a coding system itself. As I said before, it isn't used for what you think it is. I know why you want to "learn this" so badly. ::)
Ok well can anybody explain how you set it up.
var Has_F@LL3N_Performed_GoogleSearch;
set Has_F@LL3N_Performed_GoogleSearch to false;
if F@LL3N_GoogleSearch is true then
set this thread to closed
end if
https://en.wikipedia.org/wiki/Pseudocode
It does not have any standard; like the above link states, it's meant to be read by humans. Say you want to make a program that will count down from 10 to 0. The pseudocode might look like this:
while number is greater than 0 {
print number
decrement number by 1
}
print "0!!!"
In actual code, it may look like this:
Java
for (int i = 10; i > 0; i--) {
System.out.println(i);
}
System.out.println("0!!!");
Python
i = 10
while i > 0:
print(i)
i -= 1
print("0!!!")
That's really all there is to it... nothing too special.
True, but I don´t think he wanted something like this since it´s not really Wii hacking related.
Sorry if this reply is un-necessary, however what he "wants" is a psuedo coding tut that will teach him how to be the next Seth, if you know what I mean. They were discussing how seth makes his super advantaged codes, and someone, pretending to know what they're talking about, said he did it through psuedo coding. Or something like that, I couldn't handel the stupidity in the answers to his question so I didn't bother reading on.