diff options
| author | Julian Hurst <ark@mansus.space> | 2026-03-29 23:45:16 +0200 |
|---|---|---|
| committer | Julian Hurst <ark@mansus.space> | 2026-03-29 23:45:16 +0200 |
| commit | 4088afafe7599772703c8df25ad8ed55f7197fd7 (patch) | |
| tree | 5d3bcc892c1a00f32c77ac4d0290fe1fced394cc /test.ra | |
| parent | 678a38d41ba21c260ee74e1dbc516c6f5fe7222d (diff) | |
| download | rabbitscript-4088afafe7599772703c8df25ad8ed55f7197fd7.tar.gz | |
Support string literal variables (with string interpolation)mistress
Diffstat (limited to 'test.ra')
| -rw-r--r-- | test.ra | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,8 +1,10 @@ a=2 1 + 6 * b=3 5 * +c="string literal ${a}" ls() print("hello world!") print("(2 + 1) * 6 = ${a}") print("3 * 5 = ${b}") +print("strlit in var c is: ${c}") mpv("--shuffle", "/home/juju/vids/Simpsons") |
