Using my debugger (lldb) I can easily create Instances classes when it is Objective-C code.
(lldb) e id $my_hello = [hello_from_objc new]
(lldb) po $my_hello
<hello_from_objc: 0x1c4013020>
(lldb) po [$my_hello secret_objc_method]
0x000000000000002a
(lldb) po (int) [$my_hello secret_objc_method]
42
But I can't work out how to do the same with lldb's expression command when the code is pure Swift. I create an instance in Swift code easily enough..
let my_swift_framework = Hello_Class()
print("✔️ \(my_swift_framework.samplePublicVariable)")