tests/testthat/core/fun-dec-in.R

function()
  NULL

x <- function() {
  3
}

function(x = 1,
         y = 3) { 3}


function(x = 1,
         y = 3
         ) { 3}


function(x = 1,
         y = 3
)
{ 3}

c(
  function() {
    3
  }
)

c(
  function() {
    3
  },
  function(xx = 3) 3
)
lorenzwalthert/semicoloner documentation built on Dec. 21, 2021, 11:48 a.m.