diff --git a/mind game_Naga b/mind game_Naga new file mode 100644 index 0000000..3365592 --- /dev/null +++ b/mind game_Naga @@ -0,0 +1,21 @@ +// Define Neurons +Neuron SensoryInput { + Input: Stimulus; + Output: Signal; +} + +Neuron Memory { + Input: Signal; + Store: Data; + Output: Signal; +} + +Neuron DecisionMaker { + Input: Signal; + Process: Logic; + Output: Action; +} + +// Define Synapses (Connections between neurons) +Synapse SensorToMemory { + From