1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
version 1.3 enum Color { Red, Green, Blue } task enum_to_string { input { Color color = Color.Red } command <<< echo "~{color}" >>> output { String color_name = "~{color}" String from_stdout = read_string(stdout()) } }