AIMA.Core.Logic.FOL.Parsing.FOLLexer.isVariable C# (CSharp) Method

isVariable() private method

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