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

57 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-16 15:50:33 -06:00
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
, propositionReductio = ""
2024-11-16 15:50:33 -06:00
, propositionSummary = "Summary"
2024-11-16 17:28:46 -06:00
, proofLink = ""
2024-11-22 02:19:27 -06:00
, proofText = ""
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-16 15:50:33 -06:00
, conclusionNotation = "()"
}
]
}