summaryrefslogtreecommitdiff
path: root/compiler/pepper-str/README.md
blob: ee99383d8fd680ad39e00c113dfbdf3553fe3048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# pepper-str

Let us simulate string interpolation in C++!

## HOW TO USE

```cxx
#include <pepper/str.h>

int main(int argc, char **argv)
{
  std::cout << pepper::str("There are ", argc, " arguments") << std::endl;
  return 0;
}
```