File: strings.cr

package info (click to toggle)
crystal 1.6.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,956 kB
  • sloc: javascript: 1,712; sh: 592; cpp: 541; makefile: 243; ansic: 119; python: 105; xml: 32
file content (9 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
a = "hello world"
b = "abcσdeσf"
# print: a
# lldb-check: (String *) $0 = {{0x[0-9a-f]+}} "hello world"
# gdb-check: $1 = "hello world"
# print: b
# lldb-check: (String *) $1 = {{0x[0-9a-f]+}} "abcσdeσf"
# gdb-check: $2 = "abcσdeσf"
debugger