mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
55 lines
1.3 KiB
Elm
Executable file
55 lines
1.3 KiB
Elm
Executable file
module Debate.Arguments.Template exposing (..)
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
argument : Argument
|
|
argument =
|
|
{ argumentTitle = "Title"
|
|
, propositionTitle = "Proposition"
|
|
, propositionReductio = ""
|
|
, propositionSummary = "Summary"
|
|
, proofLink = ""
|
|
, definitionTable =
|
|
[ { definiendum = ""
|
|
, definiens = ""
|
|
}
|
|
, { definiendum = ""
|
|
, definiens = ""
|
|
}
|
|
, { definiendum = ""
|
|
, definiens = ""
|
|
}
|
|
, { definiendum = ""
|
|
, definiens = ""
|
|
}
|
|
, { definiendum = ""
|
|
, definiens = ""
|
|
}
|
|
, { definiendum = ""
|
|
, definiens = ""
|
|
}
|
|
]
|
|
, argumentFormalization =
|
|
[ { premises =
|
|
[ { premise = ""
|
|
, notation = ""
|
|
}
|
|
, { premise = ""
|
|
, notation = ""
|
|
}
|
|
, { premise = ""
|
|
, notation = ""
|
|
}
|
|
, { premise = ""
|
|
, notation = ""
|
|
}
|
|
, { premise = ""
|
|
, notation = ""
|
|
}
|
|
]
|
|
, conclusion = ""
|
|
, conclusionNotation = "(∴)"
|
|
}
|
|
]
|
|
}
|