Skip to content

raku-community-modules/Slang-Piersing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Actions Status Actions Status Actions Status

NAME

Slang::Piersing - allow ? and ! at end of identifiers

SYNOPSIS

use Slang::Piersing;

sub foo?($a, $b) { $a * $b };
sub foo!($a, $b) { $a + $b };

foo? 3, 5  # 15
foo?(3, 5) # 15
foo!(3, 5) #  8

DESCRIPTION

The Slang::Piersing module adapts the Raku Programming Language syntax to allow the question mark ? and exclamation mark ! at the end of identifiers.

AUTHORS

  • Tobias Leich (FROGGS)

Source can be located at: https://github.com/raku-community-modules/Slang-Piersing . Comments and Pull Requests are welcome.

COPYRIGHT AND LICENSE

Copyright 2015, 2016, 2017 Tobias Leich

Copyright 2023-2025 Raku Community

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.

About

Allow ! and ? at the end of identifiers in the Raku Programming Language

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 5

Languages