“So you know- “PSUEDO””

John Nix
1 min readMay 14, 2021

What is “PSUEDO-CODE” Pseudo code or Pseudo in a script is marked out lines in a script that are there to help anyone that did not write the script such as people in a development team be able to read the code as if they are not that tech savvy and do not know script language.

it looks like this,

EXSAMPLE:( // Deal with battery running out)… the () is just to point to the pseudo code with the// blocking it out and the point of the // is to make it so the compiler knows not to try to run it.) and it is in reference to the snip of code below which is from a flashlight script I wrote.
var intensityPercent = (float) currentBatteries / (float) maxBatteryCount;

in doing this it buts in plan English the message that is in turn put in to script so it tells the developer what the line of code does.

--

--