Epidemiology of Yoga

References:

Moadel, A., Shah, C., Harris, M. S., Wylie-Rosett, J., Patel, S. R., Hall, C. B., & Sparono, J. A. (2007, Oct 1). Randomized Control Trial of yoga among a multiethnic sample of breast cancer patients:effects on quality of life. Journal of clinical Oncology, 25(28), 4387-95.

 

YogaStand

package YogaStand;

import org.omg.Messaging.SyncScopeHelper;

public class StandingPoses {

public static void main(String[] args) {
/*standing position has many aasans*/
String[] aasana = {“tadasana”, “urdhavahastasana”,”malasana”,”utkatasana”, “vrksana”};
for(String temp : aasana){
System.out.println(temp);
}
}

}