CryptoZombies chap.2-05~08 ✔import "./zombiefactory.sol"; 동일한 폴더에 있는 zombiefactory.sol이라는 파일을 컴파일러가 불러오게 한다. solidity의 파일 확장자는 sol이다. ✔Inheritance 상속 : contract 자식 컨트랙트 is 부모 컨트랙트 contract ZombieFeeding is ZombieFactory { >>ZombieFeeding이 자식 컨트랙트이고 ZombieFactory가 부모 컨트랙트! ZombieFeeding은 ZombieFactory의 함수, 이벤트, 제어자에 접근할 수 있다. A라는 변수가 있고 B라는 배열이 있을 때, ✔Storage : string [ ] storage A = B[2]; A는 B에 ..