Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 419 Bytes

RESEARCH.md

File metadata and controls

12 lines (10 loc) · 419 Bytes

Research concepts

This is a show of some experimental concepts that should be added in future versions of UCP.

Command DSL

ScalaTest-like parameters

//Old
MiscParams.sequence(GenericParam("receiver")(nameToReceiver), GenericParam.raw("msg")), MiscParam.optional(GenericParam("color")(nameToColor))

//New
nameToReceiver as "receiver" and Param.Optional(nameToColor as "color") and  _ => _ as "msg"