DEV_BUT1/DEV2.1/TP10/Exo3/Incomplet.java

6 lines
155 B
Java
Raw Normal View History

2023-04-04 14:03:16 +02:00
public class Incomplet {
public static void main(String[] args) {
byte[] txt = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x0D, 0x0A};
System.out.write(txt);
}
}