diff --git a/examples/tostring.luau b/examples/tostring.luau new file mode 100644 index 0000000..5a52d1d --- /dev/null +++ b/examples/tostring.luau @@ -0,0 +1,9 @@ +local Codenamer = require("../dist/codenamer") + +local codenamer = Codenamer.new() + +print("I have a codenamer instance of type:", tostring(codenamer)) + +codenamer:with_dictionary({ "this", "is", "a", "custom", "dictionary" }) + +print("With a custom dictionary provided, the instance is now of type: ", tostring(codenamer))