From 4088afafe7599772703c8df25ad8ed55f7197fd7 Mon Sep 17 00:00:00 2001 From: Julian Hurst Date: Sun, 29 Mar 2026 23:45:16 +0200 Subject: Support string literal variables (with string interpolation) --- test.ra | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test.ra') diff --git a/test.ra b/test.ra index 01eaee0..bfe529a 100644 --- a/test.ra +++ b/test.ra @@ -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") -- cgit v1.2.3