Skip to content

Commit

Permalink
use ... in example code
Browse files Browse the repository at this point in the history
  • Loading branch information
cygx committed May 12, 2017
1 parent 7182f51 commit 9b6faa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example.p6
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ say EVAL :lang<C>, :returns(int32), :include<limits.h>, q{
return INT_MAX;
};

sub add(int32 \a, int32 \b --> int32) {} ==> C(:include<stdio.h>, q{
sub add(int32 \a, int32 \b --> int32) {...} ==> C(:include<stdio.h>, q{
puts("adding...");
return a + b;
});
Expand Down

0 comments on commit 9b6faa7

Please sign in to comment.