repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
evcc: 0.131.4 -> 0.131.5
[NixPkgs.git]
/
pkgs
/
by-name
/
in
/
inja
/
simple-cmake-test
/
main.cpp
blob
4ec66678d2b7f9ca42524f4ca43cce8704e6647b
1
#include <inja/inja.hpp>
2
#include <iostream>
3
#include <nlohmann/json.hpp>
4
5
int
main
() {
6
nlohmann
::
json data
= {{
"name"
,
"world"
}};
7
inja
::
render_to
(
std
::
cout
,
"Hello {{ name }}!"
,
data
);
8
}