Pseudocode
Jump to navigation
Jump to search
- This article is not detailed enough and needs to be expanded. Please help us by adding some more information.
- This is still a work in progress. It may be changed in the future.
Pseudocode is a programming language that is based on American textbook pseudocode
commands:
function(name, args) { code } defines a function named name using arguments args
fname(args) calls the function name fname using argumentss args
print("string") prints string to output
input() gets input from user