Both should work: ```R Class("Foo", x = is.integer, y = is.character) foo <- Foo(x = 1L, y = "hello") foo <- Foo(1L, "hello") ``` Related to #8
Both should work:
Related to #8