From 08f49331b40c26897972cef851e508f016090490 Mon Sep 17 00:00:00 2001 From: mahlon Date: Tue, 1 Apr 2025 18:08:53 +0000 Subject: [PATCH] Add output to final example. FossilOrigin-Name: 41b6e2ad2170d7515943085037909a1539d03ae99e7c0a5a430a780e0421fc53 --- USAGE.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/USAGE.md b/USAGE.md index 4031349..9fa0314 100644 --- a/USAGE.md +++ b/USAGE.md @@ -495,7 +495,8 @@ res = conn.query """ for row in res: var since = row[0] var people = row[1].toList.map( proc(p:KuzuValue):KuzuStructValue = p.toNode ) - echo &"""{people[0]["name"]} has known {people[1]["name"]} since {since}.""" - + echo &"""{people[0]["name"]} has known {people[1]["name"]} since {since}.""" #=> + # Bob has known Bruce since 2003. + # Bob has known Alice since 2009. + # Alice has known Bob since 2010. ``` -