Module: Nockr
- Defined in:
- lib/nockr.rb,
lib/nockr/atom.rb,
lib/nockr/cell.rb,
lib/nockr/noun.rb,
lib/nockr/version.rb
Defined Under Namespace
Classes: Atom, Cell, Noun
Constant Summary
collapse
- VERSION =
"0.0.3"
Class Method Summary
collapse
Class Method Details
.nock(input) ⇒ Object
10
11
12
13
14
|
# File 'lib/nockr.rb', line 10
def nock(input)
n = Noun.new input_ary: input
puts "Interpreting #{input} as Nock..."
puts "=> #{n.interpret}"
end
|