From b381b6988ddb9592b258b104519b7bbb71223db5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Mon, 23 Sep 2024 02:10:12 +1200 Subject: [PATCH] Sync stub and example annotations (#107) --- exercises/practice/forth/Forth.roc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exercises/practice/forth/Forth.roc b/exercises/practice/forth/Forth.roc index bca5617..3364d17 100644 --- a/exercises/practice/forth/Forth.roc +++ b/exercises/practice/forth/Forth.roc @@ -1,5 +1,7 @@ module [evaluate] -evaluate : Str -> Result (List I16) _ +Stack : List I16 + +evaluate : Str -> Result Stack _ evaluate = \program -> crash "Please implement 'evaluate'"