Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
public class Bool {
2
public static void main(String[] v) {
3
int x = 42;
4
5
if (x = x + 42) {
6
System.out.println("Das Leben");
7
} else {
8
System.out.println("Das Universum");
9
}
10
}
11
}
12
13