move vool statements into own directory
also tests for guard to work
This commit is contained in:
9
lib/vool/statements/send_statement.rb
Normal file
9
lib/vool/statements/send_statement.rb
Normal file
@ -0,0 +1,9 @@
|
||||
module Vool
|
||||
class SendStatement < Statement
|
||||
attr_reader :name , :receiver , :arguments
|
||||
|
||||
def initialize(name , receiver , arguments = [])
|
||||
@name , @receiver , @arguments = name , receiver , arguments
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user