参数解析

    1. This is not the answer.
    2. $ ./match_args 42
    3. This is the answer!
    4. $ ./match_args do something
    5. error: second argument not an integer
    6. match_args <string>
    7. Check whether given string is the answer.
    8. match_args {increase|decrease} <integer>
    9. Increase or decrease given integer by one.
    10. $ ./match_args do 42
    11. match_args <string>
    12. Check whether given string is the answer.
    13. match_args {increase|decrease} <integer>
    14. Increase or decrease given integer by one.
    15. 43