a = 10;

function createHelix(nResidues,phi1, psi1, phi2, psi2) {

print a;

var a = 3
print a;

test(a);

refresh
}


function test(b) {
print "test b " + b;
}


createHelix(2,"alpha")

print a;
