(bind-func try_a_get
(lambda (instance:godot_object*)
(println "try a get!")
(let ((method:godot_method_bind* (godot_method_bind_get_method "Object" "get"))
(arg1 (godot_string_var "name"))
(args:godot_variant** (salloc 1)) ;; find_node is a 3 arg funtion
(error:godot_variant_call_error* (salloc)))
(println "ok to here in try a get!")
;; find_node is (string, bool, bool)
(pfill! args (ref arg1))
(println "filled args!")
(let ((res (godot_method_bind_call method instance args 1 error))
(type (godot_variant_get_type (ref res))))
(println "done with try a get!" type error)
void))))