freebird2008
11-15-2008, 11:03 PM
What I am wondering right now if it is possible to create objects in SAS. I want to build an array where each element can contain two items. My primary experience has been writing programs in Java and I am hoping I can carry this concept over into SAS. For example
public static class Object
{
int Item1;
int Item2;
}
// end public static Object
You can then create and array of these kind of objects using Java. Any suggestions on how I could do this in SAS?
public static class Object
{
int Item1;
int Item2;
}
// end public static Object
You can then create and array of these kind of objects using Java. Any suggestions on how I could do this in SAS?