{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}
module Study.Courses.English.Grammar.Crash.Vocabulary where
import Core
import Study.Framework.Lojban.VocabularyLoaders (loadVocabularyFromYamlCode)
import Data.FileEmbed (embedStringFile)
vocabulary01 :: Vocabulary
vocabulary01 :: Vocabulary
vocabulary01 = Text -> Vocabulary
loadVocabularyFromYamlCode $(embedStringFile "resources/courses/english/grammar/crash/vocabulary/01.yaml")
vocabulary01_cumulative :: Vocabulary
vocabulary01_cumulative :: Vocabulary
vocabulary01_cumulative = Vocabulary
vocabulary01
vocabulary02 :: Vocabulary
vocabulary02 :: Vocabulary
vocabulary02 = Text -> Vocabulary
loadVocabularyFromYamlCode $(embedStringFile "resources/courses/english/grammar/crash/vocabulary/02.yaml")
vocabulary02_cumulative :: Vocabulary
vocabulary02_cumulative :: Vocabulary
vocabulary02_cumulative = Vocabulary
vocabulary01_cumulative Vocabulary -> Vocabulary -> Vocabulary
forall a. Semigroup a => a -> a -> a
<> Vocabulary
vocabulary02
vocabulary03 :: Vocabulary
vocabulary03 :: Vocabulary
vocabulary03 = Text -> Vocabulary
loadVocabularyFromYamlCode $(embedStringFile "resources/courses/english/grammar/crash/vocabulary/03.yaml")
vocabulary03_cumulative :: Vocabulary
vocabulary03_cumulative :: Vocabulary
vocabulary03_cumulative = Vocabulary
vocabulary02_cumulative Vocabulary -> Vocabulary -> Vocabulary
forall a. Semigroup a => a -> a -> a
<> Vocabulary
vocabulary03