service { const html Welcome = Welcome! ; const html Pledge = How much do you want to contribute? ; const html Total = The total is now <[total]>. ; int amount; session Contribute() { int i; i= 87; show Welcome; show Pledge receive[i = contribution]; amount = amount + i; exit plug Total[total = amount]; } }