aver-lang 0.18.0

VM and transpiler for Aver, a statically-typed language designed for AI-assisted development
Documentation
1
2
3
4
/// Convert first character to lowercase.
pub(super) fn to_lower_first(s: &str) -> String {
    crate::codegen::common::to_lower_first(s)
}