

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Still calibrating
click for more info
Not enough gems
Cost: 6 gems
1: Sum Types
incomplete
2: Union Types
incomplete
3: Enums
incomplete
4: Sum Types
incomplete
5: Match
incomplete
6: Sum Types Practice
incomplete
This lesson's interactive features are locked, please to keep using them
Doc2Doc should be able to prepare and export a CSV file of whatever data you input. CSV (Comma-Separated Values) is a ubiquitous text format that allows for information to be structured in a table. There is usually a header row, followed by data rows. Within rows, items are separated by commas.
Complete the get_csv_status function. It should use a match statement to select the correct response depending on the status of the export operation. Create functions to handle each operation as follows:
unknown export status
It's better if you try this challenge without using loops for practice, but you may use loops.