内容简介:Idris 2 v0.4.0 发布。此版本主要变更包括语法变化、编译器变更、REPL/IDE 模式变更。 语法变化 Desugar non-binding sequencing in do blocks to (>>) (#1095) Multiline Strings with """ as delimiters (#109...
Idris 2 v0.4.0 发布。此版本主要变更包括语法变化、编译器变更、REPL/IDE 模式变更。
语法变化
- Desugar non-binding sequencing in do blocks to (
>>
) (#1095) - Multiline Strings with
"""
as delimiters (#1097) - Force strict indentation after usage of
with
keyword (#1107) - The syntax for parameter blocks has been updated. It now allows to declare implicit parameters and give multiplicities for parameters. The old syntax is still available for compatibility purposes but will be removed in the future.
- Add support for SnocList syntax:
[< 1, 2, 3]
desugars intoLin :< 1 :< 2 :< 3
and their semantic highlighting. - Underscores can be used as visual separators for digit grouping purposes in integer literals:
10_000_000
is equivalent to10000000
and0b1111_0101_0000
is equivalent to0b111101010000
. This can aid readability of long literals, or literals whose value should clearly separate into parts, such as bytes or words in hexadecimal notation.
编译器变化
- Added more optimisations and transformations, particularly on case blocks, list-shaped types, and enumerations, so generated code will often be slightly faster.
- Added
--profile
flag, which generates profile data if supported by a back end. Currently supported by the Chez and Racket back ends. - New
%builtin
pragma for compiling user defined natural numbers to primitiveInteger
s (see the docs) - The
version
field in.ipkg
files is now used. Packages are installed into a directory which includes its version number, and dependencies can have version number ranges using<=
,<
,>=
,>
,==
to express version constraints. Version numbers must be in the form of integers, separated by dots (e.g.1.0
,0.3.0
,3.1.4.1.5
etc) - Idris now looks in the current working directory, under a subdirectory
depends
for local installations of packages before looking globally. - Added an environment variable
IDRIS2_PACKAGE_PATH
for extending where to look for packages. - Added compiler warnings flags (
-W
prefix):-Wno-shadowing
: disable shadowing warnings.-Werror
: treat warnings as errors.
- Experimental flag (
-Xcheck-hashes
) to check hashes instead of filesystem times to determine if files should be recompiled. Should help with CI/CD caching.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 编程语言特性:函数
- Go 语言函数式编程系列教程(十八) —— 函数篇:函数的基本定义和调用
- Go 语言函数式编程系列教程(十九) —— 函数篇:函数的传参和返回值
- Elixir 1.8 发布,函数式编程语言
- OCaml 4.08.0 发布,函数式编程语言
- OCaml 4.09.0 发布,函数式编程语言
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。