mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
36 lines
909 B
Elm
36 lines
909 B
Elm
![]() |
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 = ""
|
||
|
}
|
||
|
]
|
||
|
}
|