lib.c
and lib.h
should i include lib.h
in lib.c
?lib.c
and lib.h
should i include lib.h
in lib.c
? class {
--something
}
(edited)class (something) {
-- stuff and things
}
a{}
is syntactic sugar for a({})
function (a, b) return a + b end
(+)
(because +
is a function by itself) (edited)lambda a, b: a + b
(a, b) => a + b