Files
uni/year4/semester1/CT4101: Machine Learning/materials/topic2/examples/staticvsdynamic1.java
2024-09-29 06:45:09 +01:00

10 lines
256 B
Java

public class staticvsdynamic1 {
public static void main(String[] args) {
int x = 4; // compiles ok
x = 5; // compiles ok
x = 3.14159; // compiler error
x = "Hello world!"; // compiler error
y = "abc123"; // compiler error
}
}