writeBoolean static method
- CompoundTag tag,
 - String name,
 - bool b
 
Implementation
static void writeBoolean(CompoundTag tag, String name, bool b) {
  tag.put(name, ByteTag.valueOf(b ? 1 : 0));
}
static void writeBoolean(CompoundTag tag, String name, bool b) {
  tag.put(name, ByteTag.valueOf(b ? 1 : 0));
}