From 06ed728c511537f478783544f90156e537c49c6b Mon Sep 17 00:00:00 2001 From: Wildy Sheverando Date: Thu, 7 Nov 2024 18:43:51 +0800 Subject: [PATCH] feat: add hello world for Forth --- hello.fs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 hello.fs diff --git a/hello.fs b/hello.fs new file mode 100644 index 0000000..bbe0686 --- /dev/null +++ b/hello.fs @@ -0,0 +1,2 @@ +: hello-world ." Hello, World!" ; +hello-world