website/frontend/src/Debate/Gibberish/Domains/Metaphysics.elm

36 lines
909 B
Elm
Raw Normal View History

2024-11-30 21:15:49 -06:00
module Debate.Gibberish.Domains.Metaphysics exposing (..)
import Debate.Gibberish.Types exposing (..)
metaphysicsGibberish : Domain
metaphysicsGibberish =
{ gibberishDomainName = "Metaphysics"
, gibberishTerms =
[ { term = "correspondence theory of truth"
, explanation = ""
}
, { term = "libertarian free will"
, explanation = ""
}
, { term = "metaphysical essence"
, explanation = ""
}
, { term = "metaphysical modality"
, explanation = ""
}
, { term = "non-physical mental entities"
, explanation = ""
}
, { term = "ontological modality"
, explanation = ""
}
, { term = "subjective idealism"
, explanation = ""
}
, { term = "warrant"
, explanation = ""
}
]
}