• wow = function(tell_statement){
    if (tell_statement == true) {

    trace("Gabes, you're fooking awesome")
    

    } else if (tell_statement == false){

    trace("Beards are good at polo")
    

    }
    }

About