https://github.com/samedwardes/badadd
Incorrectly add numbers together
https://github.com/samedwardes/badadd
Last synced: over 1 year ago
JSON representation
Incorrectly add numbers together
- Host: GitHub
- URL: https://github.com/samedwardes/badadd
- Owner: SamEdwardes
- License: other
- Created: 2022-09-09T21:45:17.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-12T21:49:21.000Z (almost 4 years ago)
- Last Synced: 2025-02-12T17:50:01.307Z (over 1 year ago)
- Language: R
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# badadd
The goal of badadd is to incorrectly perform mathematical operations on numbers.
## Installation
You can install the development version of badadd like so:
``` r
devtools::install_github("SamEdwardes/badadd")
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(badadd)
add(1, 2, 3, 4)
```