diff options
author | PizzasBear <43722034+PizzasBear@users.noreply.github.com> | 2023-11-22 17:09:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-22 16:09:33 +0100 |
commit | 696561003d9caaf5d1fd537d6a0f4f88fccca8ce (patch) | |
tree | 7e62fd238049cbf6a6e615b7e19ce6079a5b4cee /testing/templates | |
parent | 48c6cd327d3c1df4218898be509250efcc56597c (diff) | |
download | askama-696561003d9caaf5d1fd537d6a0f4f88fccca8ce.tar.gz askama-696561003d9caaf5d1fd537d6a0f4f88fccca8ce.tar.bz2 askama-696561003d9caaf5d1fd537d6a0f4f88fccca8ce.zip |
Add better support for rust-like number literals (#908)
Signed-off-by: max <gmx.sht@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | testing/templates/num-literals.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/templates/num-literals.html b/testing/templates/num-literals.html new file mode 100644 index 0000000..90b07db --- /dev/null +++ b/testing/templates/num-literals.html @@ -0,0 +1,11 @@ +{% let plain_int = 9__0__ -%} +{% let neg_int = -9__0__isize -%} +{% let suffix_int = 9__0__i32 -%} +{% let bin_int = 0b__1__0__ -%} +{% let oct_int = 0o__7__0__ -%} +{% let hex_int = 0x__f__0__ -%} +{% let plain_float = 1__0__.5__0__ -%} +{% let suffix_float = 1__0__.5__0__f32 -%} +{% let exp_float = 1__0__e+__1__0__f32 -%} +{% let dotexp_float = 1__0__.5__0__e+__1__0__f32 -%} +[{{ plain_int }}, {{ neg_int }}, {{ suffix_int }}, {{ bin_int }}, {{ oct_int }}, {{ hex_int }}, {{ plain_float }}, {{ suffix_float }}, {{ exp_float }}, {{ dotexp_float }}] |