Skip to content

Instantly share code, notes, and snippets.

@pocke
Last active April 30, 2019 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pocke/d4c55e22b3fb5c5fcd5a6016889c3a68 to your computer and use it in GitHub Desktop.
Save pocke/d4c55e22b3fb5c5fcd5a6016889c3a68 to your computer and use it in GitHub Desktop.
For akaza blog
require 'akaza'
class A
extend Akaza::Annotation
whitespace def sum(a, b)
input=StringIO.new("#{a}\n#{b}\n")
output=StringIO.new
Akaza::Body
output.string.to_i
end
end
a = A.new
p a.sum(20, 22) # => 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment