Reppo for internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
453 B

2 years ago
  1. # Hello, world!
  2. #
  3. # This is an example function named 'hello'
  4. # which prints 'Hello, world!'.
  5. #
  6. # You can learn more about package authoring with RStudio at:
  7. #
  8. # http://r-pkgs.had.co.nz/
  9. #
  10. # Some useful keyboard shortcuts for package authoring:
  11. #
  12. # Install Package: 'Ctrl + Shift + B'
  13. # Check Package: 'Ctrl + Shift + E'
  14. # Test Package: 'Ctrl + Shift + T'
  15. hello <- function() {
  16. print("Hello, world! Now")
  17. }