From 8f9e875d636c18b0cb43df9ceb43a44ad6a8df68 Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Sat, 25 Sep 2021 20:08:54 -0500 Subject: [PATCH] Remove todo on tagged union section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e6aacb..eb28759 100644 --- a/README.md +++ b/README.md @@ -372,7 +372,7 @@ function that takes a pointer exists, we could use this: This function takes a scope and returns the deserialized vector, and it will free the pointer when the scope closes. -#### TODO Tagged Union +#### Tagged Union For the tagged union type, we will represent the value as a vector of a keyword naming the tag and the value. The type itself will need to take arguments, similar to `struct`. For example, if we were to represent a result type like in