@@ -35,9 +35,6 @@ New language features
35
35
Language changes
36
36
----------------
37
37
38
- * Unsigned ` BigInt ` literal syntax has been removed ([ #11105 ] ).
39
- Unsigned literals larger than ` UInt128 ` now throw a syntax error.
40
-
41
38
* Tuple types are now written as ` Tuple{A, B} ` instead of as ` (A, B) ` .
42
39
Tuples of bits types are inlined into structs and arrays, like other
43
40
immutable types.
@@ -78,18 +75,21 @@ Language changes
78
75
* ` [x,y] ` constructs a vector of ` x ` and ` y ` instead of concatenating them
79
76
([ #3737 ] , [ #2488 ] , [ #8599 ] ).
80
77
78
+ * Unsigned ` BigInt ` literal syntax has been removed ([ #11105 ] ).
79
+ Unsigned literals larger than ` UInt128 ` now throw a syntax error.
80
+
81
81
* ` error(::Exception) ` and ` error(::Type{Exception}) ` have been deprecated
82
82
in favor of using an explicit ` throw ` ([ #9690 ] ).
83
83
84
84
* ` Uint ` etcetera are renamed to ` UInt ` ([ #8905 ] ).
85
85
86
86
* ` String ` is renamed to ` AbstractString ` ([ #8872 ] ).
87
87
88
- * ` None ` is deprecated; use ` Union() ` instead ([ #8423 ] ).
88
+ * ` None ` is deprecated; use ` Union{} ` instead ([ #8423 ] ).
89
89
90
90
* ` Nothing ` (the type of ` nothing ` ) is renamed to ` Void ` ([ #8423 ] ).
91
91
92
- * Arrays can be constructed with the syntax ` Array{T}(m,n) ` ([ #3214 ] , [ #10075 ] )
92
+ * Arrays can be constructed with the syntax ` Array{T}(m,n) ` ([ #3214 ] , [ #10075 ] ).
93
93
94
94
* ` Dict ` literal syntax ` [a=>b,c=>d] ` is replaced by ` Dict(a=>b,c=>d) ` ,
95
95
` {a=>b} ` is replaced by ` Dict{Any,Any}(a=>b) ` , and
@@ -122,6 +122,9 @@ Language changes
122
122
* Unions of types should now be written with curly braces instead of parentheses, i.e.
123
123
` Union{Type1, Type2} ` instead of ` Union(Type1, Type2) ` ([ #11432 ] ).
124
124
125
+ * The keyword ` local ` is no longer allowed in global scope. Use ` let ` instead of
126
+ ` begin ` to create a new scope from the top level ([ #7234 ] , [ #10472 ] ).
127
+
125
128
Command line option changes
126
129
---------------------------
127
130
0 commit comments