Files
DEV/DEV2.1/TP10/03_Incomplet/Incomplet.java
Simoes Lukas cf33623a5d TP Exceptions
2025-03-12 17:10:44 +01:00

11 lines
225 B
Java

import java.io.IOException;
public class Incomplet {
public static void main(String[] args) {
byte[] txt = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x0D, 0x0A};
try {
System.out.write(txt);
} catch (IOException e) {
}
}
}