tldr-core 0.1.3

Core analysis engine for TLDR code analysis tool
Documentation
//! Language profile modules for post-migration languages.

/// C language profile.
pub mod c;
/// C++ language profile.
pub mod cpp;
/// C# language profile.
pub mod csharp;
/// Elixir language profile.
pub mod elixir;
/// Kotlin language profile.
pub mod kotlin;
/// Lua/Luau language profile.
pub mod lua;
/// OCaml language profile.
pub mod ocaml;
/// PHP language profile.
pub mod php;
/// Ruby language profile.
pub mod ruby;
/// Scala language profile.
pub mod scala;
/// Swift language profile.
pub mod swift;