Help for this page

Select Code to Download


  1. or download this
    sub foo $x $y { $x * $y }
    
  2. or download this
    sub foo $x { sub $y { $x * $y } }
    
  3. or download this
    foo(3, 5)
    
  4. or download this
    foo(3)(5)
    
  5. or download this
    val foo :: int -> int -> int