From 268f58827c40a95f1b3589b6f559be878c4155de Mon Sep 17 00:00:00 2001 From: Bulhwi Cha Date: Mon, 16 Sep 2024 14:33:53 +0900 Subject: [PATCH] doc: remove type annotations --- quiz/chapter02.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quiz/chapter02.md b/quiz/chapter02.md index babf651..b9b0101 100644 --- a/quiz/chapter02.md +++ b/quiz/chapter02.md @@ -119,8 +119,8 @@ Give the value of the expression `(λ x : Int => -x + 2) 3`. ## Question 14 -Define a function that takes a natural number as input and returns `true : Bool` -if the number is non-zero and `false : Bool` if the number is zero. +Define a function that takes a natural number as input and returns `true` if the +number is non-zero and `false` if the number is zero. ## Question 15