I was just wondering on how to put this program in to a pseudocode program display properly using python.
Module main ()
Declare Integer x = 1
Declare Real y = 3.4
Display x, " ", y
Call changeUS (x, y)
Display x, " ", y
End Module
Module changeUS (Integer a, Real b)
{
Set a = 0
Set b = 0
Display a, " ", b
}