1/// Smalltalk builder. 2pub struct SmalltalkBuilder; 3 4impl SmalltalkBuilder { 5 /// Create a new Smalltalk builder. 6 pub fn new() -> Self { 7 Self 8 } 9}