Week of 9/20
Java Stuff :)
// Java program to print greeting
class greet {
public static void main(String[] args)
{
System.out.println("Welcome to Health.ly!"); // line that we are printing
}
}
greet.main(null); // calling the class to use
// Array with list of members and positions
String[][] positions = {{"Saumya", "Scrum Leader"},{"Serafina", "Deployment"}, {"Armaan", "Frontend"}, {"Prisha", "Backend"}};
// Printing out the array values side by side
System.out.println(Arrays.deepToString(positions));