# Title : Calculations
# Objective : Nothing
# Created by: parviz.khavari
# Created on: 06.07.2020
#' Show all main arifmetical actions
#' @export
all_actions <- function(x, y) {
info()
cat("Sum: ", x + y, "\n")
cat("Ded: ", x - y, "\n")
cat("Mul: ", x * y, "\n")
cat("Div: ", x / y, "\n")
cat("Upp: ", x ^ y, "\n")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.