F-Logic
1 program
Added 2026-02-11T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Frame Logic, F logic
Provenance: commit ad433f1a67 · authored 2026-02-11T14:38:14+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Person Class Hierarchy
Provenance: commit ad433f1a67 · authored 2026-02-11T14:38:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
% Simple F-Logic example: Person class hierarchy
person :: object.
student :: person.
professor :: person.
person[name => string, age => integer].
student[studId => string, major => string].
professor[faculty => string, tenure => boolean].
john : student[name -> "John Doe", age -> 20, studId -> "S12345", major -> "Computer Science"].
mary : professor[name -> "Mary Smith", age -> 45, faculty -> "Engineering", tenure -> true].
% Query to find all students
?- X : student.