Navigation Menu

Skip to content

Commit

Permalink
Merge branch 'master' into more-grammar-examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevan Little committed Feb 3, 2013
2 parents 4b0c242 + 2c07750 commit bdbaa80
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/syntax-examples/003-variables/002-initialize/026.mo
@@ -0,0 +1 @@
my $foo = '☃';
1 change: 1 addition & 0 deletions spec/syntax-examples/003-variables/002-initialize/027.mo
@@ -0,0 +1 @@
my $☃ = 'snowman';
1 change: 1 addition & 0 deletions spec/syntax-examples/003-variables/002-initialize/028.mo
@@ -0,0 +1 @@
my %currency = ( ¥ => 'yen', € => 'euro');
6 changes: 6 additions & 0 deletions spec/syntax.md
Expand Up @@ -133,6 +133,12 @@ This doc was AUTOGENERATED via the files in `syntax-examples` tree
my %baz = ( 'one' => 10 );
# 003-variables/002-initialize/025.mo - valid perl5 syntax
my %baz = ( "one" => 10, 'two' => 20, three => 30 );
# 003-variables/002-initialize/026.mo - valid perl5 syntax
my $foo = '☃';
# 003-variables/002-initialize/027.mo - valid perl5 syntax
my $☃ = 'snowman';
# 003-variables/002-initialize/028.mo - valid perl5 syntax
my %currency = ( ¥ => 'yen', € => 'euro');
### 003-assign

# 003-variables/003-assign/001.mo - valid perl5 syntax
Expand Down

0 comments on commit bdbaa80

Please sign in to comment.