Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get rid of % variables #65

Open
cooper opened this issue May 15, 2017 · 0 comments
Open

get rid of % variables #65

cooper opened this issue May 15, 2017 · 0 comments

Comments

@cooper
Copy link
Owner

cooper commented May 15, 2017

Too confusing and ugly.

Couple alternatives. this is the current way.

func ping {
    need $msg
    %send("PONG :" + $msg.params[-1])
}

Passing the object as a normal argument

func ping {
    need $msg, $conn
    $conn.send("PONG :" + $msg.params[-1])
}

Using _self and a requirement for the special variable *self

func ping {
    need *self: Connection, $msg
    @send("PONG :" + $msg.params[-1])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant