-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
725c7b4
commit 7759018
Showing
16 changed files
with
286 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
version: 1.0.4 | ||
title: error messages in a big space | ||
--- | ||
[ E001 ]: Unused function | ||
1 | fn greet(message: String) -> Nil { | ||
┬──── | ||
╰─ This function is unused! | ||
You can safely remove it or make it public with the `pub` keyword. | ||
|
||
[ E011 ]: Unknown variable | ||
2 | println("Hello" <> message) | ||
┬────── | ||
╰─ The name `println` is not in scope here. | ||
Did you mean to use `io.println`? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
version: 1.0.4 | ||
title: error messages in a small space | ||
--- | ||
[ E001 ]: Unused function | ||
1 | fn greet(message: String) -> Nil { | ||
┬──── | ||
╰─ This function is | ||
unused! | ||
You can safely | ||
remove it or make it | ||
public with the | ||
`pub` keyword. | ||
|
||
[ E011 ]: Unknown variable | ||
2 | println("Hello" <> message) | ||
┬────── | ||
╰─ The name `println` is | ||
not in scope here. | ||
Did you mean to use | ||
`io.println`? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
version: 1.0.4 | ||
title: gleam list in a big space | ||
--- | ||
["Gleam", "is", "fun!"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
version: 1.0.4 | ||
title: gleam list in a small space | ||
--- | ||
[ | ||
"Gleam", | ||
"is", | ||
"fun!", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
version: 1.0.4 | ||
title: json in a big space | ||
--- | ||
{ | ||
title: "The sundial", | ||
author: "Shirley Jackson", | ||
publication_year: 1958.0, | ||
read: true, | ||
characters: [ "Mrs. Halloran", "Essex", "Captain Scarabombardon" ], | ||
average_rating: 5.0, | ||
ratings: [ { from: "Ben", value: 5.0 }, { from: "Giacomo", value: 5.0 } ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
version: 1.0.4 | ||
title: json in a small-ish space | ||
--- | ||
{ | ||
title: "The sundial", | ||
author: "Shirley Jackson", | ||
publication_year: 1958.0, | ||
read: true, | ||
characters: [ "Mrs. Halloran", "Essex", "Captain Scarabombardon" ], | ||
average_rating: 5.0, | ||
ratings: [ | ||
{ from: "Ben", value: 5.0 }, | ||
{ from: "Giacomo", value: 5.0 } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
version: 1.0.4 | ||
title: json in a small space | ||
--- | ||
{ | ||
title: "The sundial", | ||
author: "Shirley Jackson", | ||
publication_year: 1958.0, | ||
read: true, | ||
characters: [ | ||
"Mrs. Halloran", | ||
"Essex", | ||
"Captain Scarabombardon" | ||
], | ||
average_rating: 5.0, | ||
ratings: [ | ||
{ | ||
from: "Ben", | ||
value: 5.0 | ||
}, | ||
{ | ||
from: "Giacomo", | ||
value: 5.0 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
version: 1.0.4 | ||
title: todo list in a big space | ||
--- | ||
- […] publish Glam v1.1.0 | ||
- […] write a tutorial on todo lists | ||
- […] add `doc.flex_break` | ||
- [X] add the appropriate type variant | ||
- [X] implement the missing cases | ||
- [ ] add some tests | ||
- [ ] get some sleep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
version: 1.0.4 | ||
title: todo list in a small space | ||
--- | ||
- […] publish Glam v1.1.0 | ||
- […] write a tutorial on todo lists | ||
- […] add `doc.flex_break` | ||
- [X] add the appropriate type variant | ||
- [X] implement the missing cases | ||
- [ ] add some tests | ||
- [ ] get some sleep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.