website/frontend/src/Debate/Arguments/Template.elm

56 lines
1.3 KiB
Elm
Raw Normal View History

2024-11-16 15:50:33 -06:00
module Debate.Arguments.Template exposing (..)
import Debate.Types exposing (..)
2024-11-16 17:48:59 -06:00
argument : Argument
argument =
2024-11-22 15:10:32 -06:00
{ argumentTitle = ""
, propositionTitle = ""
, propositionReductio = ""
2024-11-22 15:10:32 -06:00
, propositionSummary = ""
2024-11-16 17:28:46 -06:00
, proofLink = ""
2024-11-16 15:50:33 -06:00
, definitionTable =
[ { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-16 18:34:05 -06:00
[ { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
]
2024-11-16 18:34:05 -06:00
, conclusion = ""
2024-11-22 15:10:32 -06:00
, conclusionNotation = ""
2024-11-16 15:50:33 -06:00
}
]
}