From f4c8b30d51ca51056d902a9c2a127d6d43d410bd Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 28 Feb 2018 17:19:45 -0800 Subject: [PATCH] Updated doc. --- limmutable.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/limmutable.c b/limmutable.c index 1e6c302..3a7cec4 100644 --- a/limmutable.c +++ b/limmutable.c @@ -4,11 +4,13 @@ * that can be used to declare immutable classes, like so: * * immutable = require 'immutable' -* local Foo = immutable({"baz","qux"}) +* local Foo = immutable({"baz","qux"}, {class_var=5}) * local foo = Foo("hello", 99) +* assert(foo.baz == "hello") * assert(not pcall(function() foo.x = 'mutable' end)) * local t = {[foo]="it works"} * assert(t[Foo("hello", 99)] == "it works") +* assert(foo.class_var == 5) * * Instances *are* garbage collected. */