Newer
Older
import tfm.utils.Logger;
public class Example1 {
public static void main(String[] args) {
int x = 1;
int y = 2;
y = x;
// while(y < x) {
// y += x;
// x = y;
//
// while (x > 1) {
// y += 12;
// x = y;
// }
// }
// switch (x) {
// case 1:
// e = 2;
// break;
// case 2:
// e = 3;
// }
Logger.log(y);