AIMA.Core.Logic.FOL.Parsing.FOLLexer.isVariable C# (CSharp) Méthode

isVariable() private méthode

private isVariable ( String s ) : bool
s String
Résultat bool
        private bool isVariable(String s)
        {
            return (char.IsLower(s[0]));
        }