website/frontend/src/Debate/Arguments/Veganism/CropDeaths.elm

54 lines
1.3 KiB
Elm
Raw Normal View History

2024-11-16 17:48:59 -06:00
module Debate.Arguments.Veganism.CropDeaths exposing (..)
import Debate.Types exposing (..)
argumentCropDeaths : Argument
argumentCropDeaths =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
, propositionSummary = "Summary"
, proofLink = ""
, definitionTable =
[ { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 17:48:59 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 17:48:59 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 17:48:59 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 17:48:59 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 17:48:59 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 17:48:59 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-16 18:34:05 -06:00
[ { premise = ""
2024-11-16 17:48:59 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 17:48:59 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 17:48:59 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 17:48:59 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 17:48:59 -06:00
, notation = ""
}
]
2024-11-16 18:34:05 -06:00
, conclusion = ""
2024-11-16 17:48:59 -06:00
, conclusionNotation = "()"
}
]
}