mirror of
https://github.com/CompeyDev/codenamer.luau.git
synced 2025-03-04 10:11:40 +00:00
9 lines
320 B
Lua
9 lines
320 B
Lua
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))
|