When forgetting to explicitly calling m
on an input molecule
val inputMolecule = Community.name(?)
inputMolecule("Ben") // will not compile and likely be inferred as an error in your IDE
Input molecule needs to be declared explicitly with the m
method
val inputMolecule = m(Community.name(?))
// Now we can apply value to input molecule
inputMolecule("Ben")
Datomic transactor is not running - please start it again.