Skip to content

Commit

Permalink
gleam format
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorKovalio authored and lpil committed Mar 30, 2024
1 parent 737250f commit 2a9a665
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion exercises/practice/grade-school/src/grade_school.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ pub fn roster(school: School) -> List(String) {
todo
}

pub fn add(to school: School, student student: String, grade grade: Int) -> Result(School, Nil) {
pub fn add(
to school: School,
student student: String,
grade grade: Int,
) -> Result(School, Nil) {
todo
}

Expand Down

0 comments on commit 2a9a665

Please sign in to comment.