[FYI: In the AP CSP Pseudocode (coding) language, the left arrow (←) is used as the assignment operator. Not the equal sign (=). Also, the "College Board Pseudocode Interpreter" website is actually NOT connected in any way with the actual College Board.]
DISPLAY("AP CSP Pseudocode: Assignment")
DISPLAY("Integer variable int1")
int1 ← 3
DISPLAY(int1)
DISPLAY("Float variable flt1")
flt1 ← 3.21
DISPLAY(flt1)
DISPLAY("String variable str1")
str1 ← "AP CSP"
DISPLAY(str1)
DISPLAY("Boolean variable bl1")
bl1 ← true
bl1 ← false
DISPLAY(bl1)
DISPLAY("The INPUT Procedure")
DISPLAY("Enter your name: ")
name ← INPUT()
DISPLAY("Your name is " + name + ".")