Hello, this is my first slide.
This is some content for the first slide.
This is the second slide.
It can also have some basic text.
That’s all folks!
```{r my-chunk, echo=false, eval=true, message=false, warning=false, fig-width=6, fig-height=4} # Define two numbers num1 <- 15 num2 <- 7
sum_result <- num1 + num2
print(paste(“The sum is:”, sum_result))
hist(rnorm(100), main = “Random Normal Data”, col = “skyblue”) ```