Logo

Programming-Idioms

  • Lisp
  • Lua

Idiom #126 Multiple return values

Write a function foo that returns a string and a boolean value.

function foo()
	return "bar", false
end

Lua functions may return multiple values
(defun foo () (format t "bar") t)
#include <stdbool.h>
typedef struct {
    const char * const a;
    const bool b;
} RetStringBool;

RetStringBool foo() {
    return (RetStringBool) {.a = "Hello", .b = true};
}

New implementation...
< >
MLKo