Todo, intero 0.1.24, run sorting example.

This commit is contained in:
Erik Svedäng 2018-01-15 16:59:21 +01:00
parent a943e1faae
commit f9f627d691
3 changed files with 3 additions and 1 deletions

View File

@ -29,6 +29,7 @@
* [0.3] If main returns the value of a function returning a generic type it will fail (because there is no constraint for "Int or ()")
* [0.3] Optimization: Implement '=' for refs to numeric types, that way Array.= can aviod copying each element before comparing them.
* [0.3] Optimization: Don't copy the whole array in Array.swap, Array.aupdate, etc.
* [0.3] Should be possible to write a ref to a number literal, i.e. &100.
* [0.4] Reintroduce the p-string patch but with support for embedded string literals.
* [0.4] Should be possible to read float literal without '.', eg. "3f" (because that's how they print sometimes)

View File

@ -10,6 +10,7 @@ carp ./examples/basics.carp -x;
carp ./examples/functor.carp -x;
carp ./examples/external_struct.carp -x;
carp ./examples/updating.carp -x;
carp ./examples/sorting.carp -x;
carp ./examples/globals.carp -x --log-memory;
# Actual tests (using the test suit)

View File

@ -39,7 +39,7 @@ packages:
- '.'
# Dependency packages to be pulled from upstream that are not in the resolver
# (e.g., acme-missiles-0.3)
extra-deps: [intero-0.1.23]
extra-deps: [intero-0.1.24]
# Override default flag values for local packages and extra-deps
flags: {}