Packages

ExTed is a naive implementation of a tree edit distance algorithm in Elixir. Please note that this algorithm has exponential runtime complexity!

Current section

Files

Jump to
exted lib exted.ex
Raw

lib/exted.ex

defmodule ExTed do
@moduledoc """
Documentation for ExTed.
"""
@doc """
Hello world.
## Examples
iex> ExTed.hello
:world
"""
def hello do
:world
end
end