Invoking events without "emit" prefix is deprecated in Transfer(msg.sender, _to, _value);

I'm following this page instructions to create my own crypto-currency with Ethereum. Here is my code: pragma solidity ^0.4.18; contract MyToken { string public name; string public symbol; u...