Skip to content

Instantly share code, notes, and snippets.

View nkabardin's full-sized avatar

Nikita Kabardin nkabardin

View GitHub Profile
# The main rule: I want to see a method call. Brackets are the most simple way to make it.
# if there is single argument and it is not a string, brackets required
fn()
fn(1)
fn(variable)
# if just single string, quotes are some kind of brackets here, and brackets can be omitted
fn 'string'