Skip to content

Instantly share code, notes, and snippets.

View miller-time's full-sized avatar
🦀

Russell miller-time

🦀
View GitHub Profile
@miller-time
miller-time / builder.jakt
Created July 24, 2022 17:35
Jakt Builder Pattern
class Foo {
_bar: i64
_baz: c_char
_qaz: String
public function bar(mut this, anon bar: i64) -> Foo {
this._bar = bar
return this
}