Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
public class SomeClass {
2
public static void main(String[] args) {
3
Day currentDay;
4
currentDay = Day.MONDAY;
5
System.out.println(currentDay);
6
}
7
}
8
9