×
Embed Pseudocode Compiler in your site!
Add the following html markup where you want to add the editor and compiler and style the tags to match your site.
Basic
Full
Copy
Run
Save
Load
Reset
Dark Mode
Layout
IB Guide
Full Screen
Embed this tool!
Editor
//This tool intends to compile and run Pseudocode to test logic. //It is consistent with the IB Computer Science syllabus standards. // //Example: function factorial(num) if num = 2 then return 2 else if num < 2 then return 1 else return num * factorial(num-1) end if end function input min input max loop num from min to max output str(num)+"!", "=", factorial(num) end loop
Inputs
Output
Input:
Submit
Run