From ba9298e470fd69f08099dc1e84bff04e783c03cb Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Mon, 2 Feb 2015 15:07:09 +0100 Subject: [PATCH] Convert to Standard Forth. --- f/forth.f | 1 - f/forth.fth | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 f/forth.f create mode 100644 f/forth.fth diff --git a/f/forth.f b/f/forth.f deleted file mode 100644 index fa4372ab..00000000 --- a/f/forth.f +++ /dev/null @@ -1 +0,0 @@ -: HELLO S" Hello, world!" TELL CR ; \ No newline at end of file diff --git a/f/forth.fth b/f/forth.fth new file mode 100644 index 00000000..8dc77cec --- /dev/null +++ b/f/forth.fth @@ -0,0 +1 @@ +: HELLO ." Hello, world!" CR ; \ No newline at end of file