Skip to content

Instantly share code, notes, and snippets.

View mxmaxime's full-sized avatar
🎯
Focusing

Maxime moreau mxmaxime

🎯
Focusing
  • France
View GitHub Profile
@mxmaxime
mxmaxime / gist:91d83e60dd101ed1b27972fd91e0673a
Created March 24, 2022 12:58 — forked from afair/gist:2402068
Perl References for Kittens

Perl References

Simple Perl variables are called scalars. Examples of scalar values are

   $number      = 123;
   $string      = "String";
   $file_handle = open "<filename";
   $null_value  = undef;
 $instance = MyClass-&gt;new;