Paste: function composition with parameters

Author: _hrrld
Mode: lua
Date: Thu, 18 Dec 2008 00:45:10
Plain Text |
function f( a, b, c )
  g( a, b, c )
  h( a, b, c )
end

function g( a, b, c )
  print( a*b*c )
end

function h( a, b, c )
  print( a+b+c )
end

New Annotation

Summary:
Author:
Mode:
Body: