Skip to content

Instantly share code, notes, and snippets.

@darioappsilon
Created May 12, 2022 07:05
Show Gist options
  • Save darioappsilon/f52425b37917d228ca183953ff119990 to your computer and use it in GitHub Desktop.
Save darioappsilon/f52425b37917d228ca183953ff119990 to your computer and use it in GitHub Desktop.
library(R6)
Dog <- R6Class(
classname = "Dog",
public = list(
name = NULL,
age = NULL,
hair_color = NULL
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment