The two obvious issues are:
- @ARGV is an array, not a scalar. You probably want to be comparing the first item in it, not the whole thing.
- '=' is the assignment operator, you want to string equality operator 'eq'
(And you're also failing to use strict and warnings)