Skip to content

Commit

Permalink
- It's time for 2.11 :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
trizen committed Nov 24, 2015
1 parent 9471930 commit 3da1dbc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"provides" : {
"Sidef" : {
"file" : "lib/Sidef.pm",
"version" : "2.10"
"version" : "2.11"
},
"Sidef::Convert::Convert" : {
"file" : "lib/Sidef/Convert/Convert.pm"
Expand Down Expand Up @@ -330,6 +330,6 @@
"http://dev.perl.org/licenses/"
]
},
"version" : "2.10",
"version" : "2.11",
"x_serialization_backend" : "JSON::PP version 2.27300"
}
4 changes: 2 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name: Sidef
provides:
Sidef:
file: lib/Sidef.pm
version: '2.10'
version: '2.11'
Sidef::Convert::Convert:
file: lib/Sidef/Convert/Convert.pm
Sidef::Deparse::Perl:
Expand Down Expand Up @@ -221,5 +221,5 @@ requires:
utf8: '0'
resources:
license: http://dev.perl.org/licenses/
version: '2.10'
version: '2.11'
x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
2 changes: 1 addition & 1 deletion lib/Sidef.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Sidef {

use 5.014;
our $VERSION = '2.10';
our $VERSION = '2.11';

our $SPACES = 0; # the current number of spaces
our $SPACES_INCR = 4; # the number of spaces incrementor
Expand Down
4 changes: 2 additions & 2 deletions scripts/Interactive/user_input_text.sf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
## http://rosettacode.org/wiki/User_input/Text
#

var s = read(String);
var i = read(Number); # auto-conversion to a number
var s = read("string: ", String);
var i = read("number: ", Number); # auto-conversion to a number

say s;
say i;

0 comments on commit 3da1dbc

Please sign in to comment.