---
title: "Arithmetic Example 2"
canonical: "https://support.appfire.com/space/PSCONF/15305246/Arithmetic%20Example%202"
format: markdown
---
> Macro (aura-html)

> Macro (excerpt)
> 
> ```
> string someText = "Hello ";
> someText = someText + "World!";
> someText = someText - "World";
> return someText;
> 
> //returns "Hello !";
> ```