Skip to content

Commit db0c77d

Browse files
make it a package
1 parent 4103575 commit db0c77d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Path.roc package/Path.roc

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ toStrUnix : Path -> Result Str [InvalidStr U64]
199199
## Converts the given [Path] to either a [List U8] (if the path was created
200200
## using [Path.unix]) or a [List U16] (if the path was created with [Path.windows]).
201201
toNums : Path -> [Windows (List U16), Unix (List U8)]
202-
toNums \@Path path -> path
202+
toNums = \@Path path -> path

package/main.roc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package [
2+
Path,
3+
] {}

0 commit comments

Comments
 (0)