- Perl 6 Deep Dive
- Andrew Shitov
- 44字
- 2021-07-03 00:05:53
String data type
Strings are represented by the Str data type in Perl 6. A string is a sequence of Unicode characters. Considering the following code snippet:
my $str = 'Hello, World!';
say $str;
Let's go straight to the methods of the Str class.
推薦閱讀
- Java多線程編程實戰指南:設計模式篇(第2版)
- JavaScript:Functional Programming for JavaScript Developers
- PyTorch自然語言處理入門與實戰
- HTML5游戲開發案例教程
- 差分進化算法及其高維多目標優化應用
- 程序是怎樣跑起來的(第3版)
- Python編程:從入門到實踐
- VMware虛擬化技術
- Hands-On Reinforcement Learning with Python
- INSTANT Sinatra Starter
- Learning Apache Cassandra
- C語言程序設計與應用(第2版)
- Apache Camel Developer's Cookbook
- C++ System Programming Cookbook
- Unity 5.X從入門到精通