Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Runtime mod fix #2

Merged
merged 4 commits into from
Dec 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions spago.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ workspace:
args:
- build
package_set:
url: https://raw.githubusercontent.com/purescm/purescm/4c68ee30ebef26205e1aa07b71195a399633aed8/package-sets/1.0.0.json
hash: sha256-3SAX1Q2D4bmN9ncrsKsh3W1xvKoY+GQZLs4xd+LREMY=
url: https://raw.githubusercontent.com/purescm/purescm/f4b8670aad61398602fe8b61e7e4a33af1102320/package-sets/1.0.0.json
2 changes: 1 addition & 1 deletion src/Data/Traversable.ss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(library (Data.Traversable foreign)
(export traverseArrayImpl)
(import (only (rnrs base) define lambda cons quote)
(prefix (purs runtime lib) rt:)
(prefix (purs runtime) rt:)
(prefix (purs runtime srfi :214) srfi:214:))

(define kons
Expand Down
2 changes: 1 addition & 1 deletion test/Main.ss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
mkNEArray
foldMap1NEArray)
(import (only (rnrs base) define lambda let if + > <)
(prefix (purs runtime lib) rt:)
(prefix (purs runtime) rt:)
(prefix (purs runtime srfi :214) srfi:214:))

(define arrayFrom1UpTo
Expand Down
Loading