From c13e03bf297d503e74e510d7b956c0eb4652794f Mon Sep 17 00:00:00 2001 From: crc Date: Sun, 22 Oct 2017 02:17:46 +0000 Subject: [PATCH] small adjustment to unicode example FossilOrigin-Name: 3462fe77769a81001dca3c20eefc408446de244effea031c33dd025731f4f092 --- example/unicode.forth | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/example/unicode.forth b/example/unicode.forth index 86ca6c5..771f3e2 100644 --- a/example/unicode.forth +++ b/example/unicode.forth @@ -3,5 +3,11 @@ RETRO tries to allow names to use unicode via UTF-8. ~~~ 'Δ var #1 !Δ - @Δ putn + @Δ putn nl +~~~ + +Display the last defined word (the variable defined above): + +~~~ +@Dictionary d:name puts nl ~~~