Skip to content

Instantly share code, notes, and snippets.

View bmaingret's full-sized avatar

Baptiste Maingret bmaingret

View GitHub Profile
module bench
function DynamicHuman = |firstName, lastName| {
return DynamicObject()
:firstName(firstName)
:lastName(lastName)
:define("hello",|this|->
"hello %s %s":format(this:firstName(), this:lastName())
)
}