Files
pic16f84-sim/HelloWorld.java
2023-05-09 22:04:08 +02:00

12 lines
346 B
Java

class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
String input = "9";
CommandDecoder commandDecoder = new CommandDecoder();
commandDecoder.CommandDecoder(input);
int binaryInput = Integer.parseInt(input);
System.out.println(binaryInput);
}
}