gitextract_770pvioc/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug-report-or-feature-request.md │ ├── pull_request_template.md │ └── workflows/ │ └── test.yml ├── .gitignore ├── Build.rakumod ├── CONTRIBUTING.md ├── CREDITS ├── LICENSE ├── META6.json ├── Makefile ├── README.md ├── doc/ │ ├── Language/ │ │ ├── 101-basics.rakudoc │ │ ├── REPL.rakudoc │ │ ├── about.rakudoc │ │ ├── brackets.rakudoc │ │ ├── classtut.rakudoc │ │ ├── community.rakudoc │ │ ├── compilation.rakudoc │ │ ├── concurrency.rakudoc │ │ ├── containers.rakudoc │ │ ├── contexts.rakudoc │ │ ├── control.rakudoc │ │ ├── create-cli.rakudoc │ │ ├── distributions/ │ │ │ ├── configuration-structure.rakudoc │ │ │ ├── introduction.rakudoc │ │ │ ├── testing.rakudoc │ │ │ ├── tools.rakudoc │ │ │ └── uploading.rakudoc │ │ ├── enumeration.rakudoc │ │ ├── exceptions.rakudoc │ │ ├── experimental.rakudoc │ │ ├── faq.rakudoc │ │ ├── filename-extensions.rakudoc │ │ ├── functions.rakudoc │ │ ├── glossary.rakudoc │ │ ├── grammar_tutorial.rakudoc │ │ ├── grammars.rakudoc │ │ ├── hashmap.rakudoc │ │ ├── haskell-to-p6.rakudoc │ │ ├── intro.rakudoc │ │ ├── io-guide.rakudoc │ │ ├── io.rakudoc │ │ ├── ipc.rakudoc │ │ ├── iterating.rakudoc │ │ ├── js-nutshell.rakudoc │ │ ├── list.rakudoc │ │ ├── making-modules/ │ │ │ ├── code.rakudoc │ │ │ └── introduction.rakudoc │ │ ├── math.rakudoc │ │ ├── module-packages.rakudoc │ │ ├── modules-core.rakudoc │ │ ├── modules-extra.rakudoc │ │ ├── modules.rakudoc │ │ ├── mop.rakudoc │ │ ├── nativecall.rakudoc │ │ ├── nativetypes.rakudoc │ │ ├── newline.rakudoc │ │ ├── numerics.rakudoc │ │ ├── objects.rakudoc │ │ ├── operators.rakudoc │ │ ├── optut.rakudoc │ │ ├── packages.rakudoc │ │ ├── performance.rakudoc │ │ ├── perl-func.rakudoc │ │ ├── perl-nutshell.rakudoc │ │ ├── perl-op.rakudoc │ │ ├── perl-overview.rakudoc │ │ ├── perl-syn.rakudoc │ │ ├── perl-var.rakudoc │ │ ├── phasers.rakudoc │ │ ├── pod.rakudoc │ │ ├── pragmas.rakudoc │ │ ├── py-nutshell.rakudoc │ │ ├── quoting.rakudoc │ │ ├── rb-nutshell.rakudoc │ │ ├── regexes-best-practices.rakudoc │ │ ├── regexes.rakudoc │ │ ├── setbagmix.rakudoc │ │ ├── signatures.rakudoc │ │ ├── slangs.rakudoc │ │ ├── statement-prefixes.rakudoc │ │ ├── structures.rakudoc │ │ ├── subscripts.rakudoc │ │ ├── syntax.rakudoc │ │ ├── system.rakudoc │ │ ├── tables.rakudoc │ │ ├── temporal.rakudoc │ │ ├── terms.rakudoc │ │ ├── testing.rakudoc │ │ ├── traits.rakudoc │ │ ├── traps.rakudoc │ │ ├── typesystem.rakudoc │ │ ├── unicode.rakudoc │ │ ├── unicode_ascii.rakudoc │ │ ├── unicode_entry.rakudoc │ │ ├── using-modules/ │ │ │ ├── code.rakudoc │ │ │ ├── finding-installing.rakudoc │ │ │ └── introduction.rakudoc │ │ └── variables.rakudoc │ ├── Native/ │ │ └── int.rakudoc │ ├── Programs/ │ │ ├── 01-debugging.rakudoc │ │ ├── 02-reading-docs.rakudoc │ │ ├── 03-environment-variables.rakudoc │ │ ├── 04-running-raku.rakudoc │ │ └── README.md │ ├── Type/ │ │ ├── AST.rakudoc │ │ ├── Allomorph.rakudoc │ │ ├── Any.rakudoc │ │ ├── Array.rakudoc │ │ ├── Associative.rakudoc │ │ ├── Attribute.rakudoc │ │ ├── Backtrace/ │ │ │ └── Frame.rakudoc │ │ ├── Backtrace.rakudoc │ │ ├── Bag.rakudoc │ │ ├── BagHash.rakudoc │ │ ├── Baggy.rakudoc │ │ ├── Blob.rakudoc │ │ ├── Block.rakudoc │ │ ├── Bool.rakudoc │ │ ├── Buf.rakudoc │ │ ├── CX/ │ │ │ ├── Done.rakudoc │ │ │ ├── Emit.rakudoc │ │ │ ├── Last.rakudoc │ │ │ ├── Next.rakudoc │ │ │ ├── Proceed.rakudoc │ │ │ ├── Redo.rakudoc │ │ │ ├── Return.rakudoc │ │ │ ├── Succeed.rakudoc │ │ │ ├── Take.rakudoc │ │ │ └── Warn.rakudoc │ │ ├── CallFrame.rakudoc │ │ ├── Callable.rakudoc │ │ ├── Cancellation.rakudoc │ │ ├── Capture.rakudoc │ │ ├── Channel.rakudoc │ │ ├── Code.rakudoc │ │ ├── Collation.rakudoc │ │ ├── CompUnit/ │ │ │ ├── PrecompilationRepository.rakudoc │ │ │ ├── Repository/ │ │ │ │ ├── FileSystem.rakudoc │ │ │ │ ├── Installation.rakudoc │ │ │ │ └── Unknown.rakudoc │ │ │ └── Repository.rakudoc │ │ ├── CompUnit.rakudoc │ │ ├── Compiler.rakudoc │ │ ├── Complex.rakudoc │ │ ├── ComplexStr.rakudoc │ │ ├── Cool.rakudoc │ │ ├── CurrentThreadScheduler.rakudoc │ │ ├── Date.rakudoc │ │ ├── DateTime.rakudoc │ │ ├── Dateish.rakudoc │ │ ├── Distribution/ │ │ │ ├── Hash.rakudoc │ │ │ ├── Locally.rakudoc │ │ │ ├── Path.rakudoc │ │ │ └── Resource.rakudoc │ │ ├── Distribution.rakudoc │ │ ├── Distro.rakudoc │ │ ├── Duration.rakudoc │ │ ├── Encoding/ │ │ │ └── Registry.rakudoc │ │ ├── Encoding.rakudoc │ │ ├── Endian.rakudoc │ │ ├── Enumeration.rakudoc │ │ ├── Exception.rakudoc │ │ ├── Failure.rakudoc │ │ ├── FatRat.rakudoc │ │ ├── ForeignCode.rakudoc │ │ ├── Format.rakudoc │ │ ├── Formatter.rakudoc │ │ ├── Grammar.rakudoc │ │ ├── Hash.rakudoc │ │ ├── HyperSeq.rakudoc │ │ ├── HyperWhatever.rakudoc │ │ ├── IO/ │ │ │ ├── ArgFiles.rakudoc │ │ │ ├── CatHandle.rakudoc │ │ │ ├── Handle.rakudoc │ │ │ ├── Notification/ │ │ │ │ └── Change.rakudoc │ │ │ ├── Notification.rakudoc │ │ │ ├── Path/ │ │ │ │ ├── Cygwin.rakudoc │ │ │ │ ├── Parts.rakudoc │ │ │ │ ├── QNX.rakudoc │ │ │ │ ├── Unix.rakudoc │ │ │ │ └── Win32.rakudoc │ │ │ ├── Path.rakudoc │ │ │ ├── Pipe.rakudoc │ │ │ ├── Socket/ │ │ │ │ ├── Async/ │ │ │ │ │ └── ListenSocket.rakudoc │ │ │ │ ├── Async.rakudoc │ │ │ │ └── INET.rakudoc │ │ │ ├── Socket.rakudoc │ │ │ ├── Spec/ │ │ │ │ ├── Cygwin.rakudoc │ │ │ │ ├── QNX.rakudoc │ │ │ │ ├── Unix.rakudoc │ │ │ │ └── Win32.rakudoc │ │ │ ├── Spec.rakudoc │ │ │ └── Special.rakudoc │ │ ├── IO.rakudoc │ │ ├── Instant.rakudoc │ │ ├── Int.rakudoc │ │ ├── IntStr.rakudoc │ │ ├── Iterable.rakudoc │ │ ├── IterationBuffer.rakudoc │ │ ├── Iterator.rakudoc │ │ ├── Junction.rakudoc │ │ ├── Kernel.rakudoc │ │ ├── Label.rakudoc │ │ ├── List.rakudoc │ │ ├── Lock/ │ │ │ ├── Async.rakudoc │ │ │ └── ConditionVariable.rakudoc │ │ ├── Lock.rakudoc │ │ ├── Macro.rakudoc │ │ ├── Map.rakudoc │ │ ├── Match.rakudoc │ │ ├── Metamodel/ │ │ │ ├── AttributeContainer.rakudoc │ │ │ ├── C3MRO.rakudoc │ │ │ ├── ClassHOW.rakudoc │ │ │ ├── ConcreteRoleHOW.rakudoc │ │ │ ├── CurriedRoleHOW.rakudoc │ │ │ ├── DefiniteHOW.rakudoc │ │ │ ├── Documenting.rakudoc │ │ │ ├── EnumHOW.rakudoc │ │ │ ├── Finalization.rakudoc │ │ │ ├── MROBasedMethodDispatch.rakudoc │ │ │ ├── MethodContainer.rakudoc │ │ │ ├── MethodDelegation.rakudoc │ │ │ ├── Mixins.rakudoc │ │ │ ├── MultipleInheritance.rakudoc │ │ │ ├── Naming.rakudoc │ │ │ ├── PackageHOW.rakudoc │ │ │ ├── ParametricRoleGroupHOW.rakudoc │ │ │ ├── ParametricRoleHOW.rakudoc │ │ │ ├── Primitives.rakudoc │ │ │ ├── PrivateMethodContainer.rakudoc │ │ │ ├── RoleContainer.rakudoc │ │ │ ├── RolePunning.rakudoc │ │ │ ├── Stashing.rakudoc │ │ │ ├── Trusting.rakudoc │ │ │ ├── TypePretense.rakudoc │ │ │ └── Versioning.rakudoc │ │ ├── Method.rakudoc │ │ ├── Mix.rakudoc │ │ ├── MixHash.rakudoc │ │ ├── Mixy.rakudoc │ │ ├── Mu.rakudoc │ │ ├── NFC.rakudoc │ │ ├── NFD.rakudoc │ │ ├── NFKC.rakudoc │ │ ├── NFKD.rakudoc │ │ ├── Nil.rakudoc │ │ ├── Num.rakudoc │ │ ├── NumStr.rakudoc │ │ ├── Numeric.rakudoc │ │ ├── ObjAt.rakudoc │ │ ├── Order.rakudoc │ │ ├── Pair.rakudoc │ │ ├── Parameter.rakudoc │ │ ├── Perl.rakudoc │ │ ├── Pod/ │ │ │ ├── Block/ │ │ │ │ ├── Code.rakudoc │ │ │ │ ├── Comment.rakudoc │ │ │ │ ├── Declarator.rakudoc │ │ │ │ ├── Named.rakudoc │ │ │ │ ├── Para.rakudoc │ │ │ │ └── Table.rakudoc │ │ │ ├── Block.rakudoc │ │ │ ├── Defn.rakudoc │ │ │ ├── FormattingCode.rakudoc │ │ │ ├── Heading.rakudoc │ │ │ └── Item.rakudoc │ │ ├── Positional.rakudoc │ │ ├── PositionalBindFailover.rakudoc │ │ ├── PredictiveIterator.rakudoc │ │ ├── Proc/ │ │ │ └── Async.rakudoc │ │ ├── Proc.rakudoc │ │ ├── Promise.rakudoc │ │ ├── PromiseStatus.rakudoc │ │ ├── Proxy.rakudoc │ │ ├── PseudoStash.rakudoc │ │ ├── QuantHash.rakudoc │ │ ├── RaceSeq.rakudoc │ │ ├── Raku.rakudoc │ │ ├── RakuAST/ │ │ │ ├── Doc/ │ │ │ │ ├── Block.rakudoc │ │ │ │ ├── Declarator.rakudoc │ │ │ │ ├── DeclaratorTarget.rakudoc │ │ │ │ ├── Markup.rakudoc │ │ │ │ └── Paragraph.rakudoc │ │ │ └── Doc.rakudoc │ │ ├── RakuAST.rakudoc │ │ ├── Range.rakudoc │ │ ├── Rat.rakudoc │ │ ├── RatStr.rakudoc │ │ ├── Rational.rakudoc │ │ ├── Real.rakudoc │ │ ├── Regex.rakudoc │ │ ├── Routine/ │ │ │ └── WrapHandle.rakudoc │ │ ├── Routine.rakudoc │ │ ├── Scalar.rakudoc │ │ ├── Scheduler.rakudoc │ │ ├── Semaphore.rakudoc │ │ ├── Seq.rakudoc │ │ ├── Sequence.rakudoc │ │ ├── Set.rakudoc │ │ ├── SetHash.rakudoc │ │ ├── Setty.rakudoc │ │ ├── Signal.rakudoc │ │ ├── Signature.rakudoc │ │ ├── Slip.rakudoc │ │ ├── Stash.rakudoc │ │ ├── Str.rakudoc │ │ ├── StrDistance.rakudoc │ │ ├── Stringy.rakudoc │ │ ├── Sub.rakudoc │ │ ├── Submethod.rakudoc │ │ ├── Supplier/ │ │ │ └── Preserving.rakudoc │ │ ├── Supplier.rakudoc │ │ ├── Supply.rakudoc │ │ ├── Systemic.rakudoc │ │ ├── Tap.rakudoc │ │ ├── Telemetry/ │ │ │ ├── Instrument/ │ │ │ │ ├── Thread.rakudoc │ │ │ │ ├── ThreadPool.rakudoc │ │ │ │ └── Usage.rakudoc │ │ │ ├── Period.rakudoc │ │ │ └── Sampler.rakudoc │ │ ├── Telemetry.rakudoc │ │ ├── Test.rakudoc │ │ ├── Thread.rakudoc │ │ ├── ThreadPoolScheduler.rakudoc │ │ ├── UInt.rakudoc │ │ ├── Uni.rakudoc │ │ ├── Unicode.rakudoc │ │ ├── VM.rakudoc │ │ ├── ValueObjAt.rakudoc │ │ ├── Variable.rakudoc │ │ ├── Version.rakudoc │ │ ├── Whatever.rakudoc │ │ ├── WhateverCode.rakudoc │ │ ├── X/ │ │ │ ├── AdHoc.rakudoc │ │ │ ├── Anon/ │ │ │ │ ├── Augment.rakudoc │ │ │ │ └── Multi.rakudoc │ │ │ ├── Assignment/ │ │ │ │ └── RO.rakudoc │ │ │ ├── Attribute/ │ │ │ │ ├── NoPackage.rakudoc │ │ │ │ ├── Package.rakudoc │ │ │ │ ├── Required.rakudoc │ │ │ │ └── Undeclared.rakudoc │ │ │ ├── Augment/ │ │ │ │ └── NoSuchType.rakudoc │ │ │ ├── Bind/ │ │ │ │ ├── NativeType.rakudoc │ │ │ │ └── Slice.rakudoc │ │ │ ├── Bind.rakudoc │ │ │ ├── Caller/ │ │ │ │ └── NotDynamic.rakudoc │ │ │ ├── Cannot/ │ │ │ │ ├── Empty.rakudoc │ │ │ │ └── Lazy.rakudoc │ │ │ ├── Channel/ │ │ │ │ ├── ReceiveOnClosed.rakudoc │ │ │ │ └── SendOnClosed.rakudoc │ │ │ ├── Comp.rakudoc │ │ │ ├── Composition/ │ │ │ │ └── NotComposable.rakudoc │ │ │ ├── Constructor/ │ │ │ │ └── Positional.rakudoc │ │ │ ├── Control.rakudoc │ │ │ ├── ControlFlow/ │ │ │ │ └── Return.rakudoc │ │ │ ├── ControlFlow.rakudoc │ │ │ ├── DateTime/ │ │ │ │ └── TimezoneClash.rakudoc │ │ │ ├── Declaration/ │ │ │ │ ├── Scope/ │ │ │ │ │ └── Multi.rakudoc │ │ │ │ └── Scope.rakudoc │ │ │ ├── Does/ │ │ │ │ └── TypeObject.rakudoc │ │ │ ├── Dynamic/ │ │ │ │ └── NotFound.rakudoc │ │ │ ├── Eval/ │ │ │ │ └── NoSuchLang.rakudoc │ │ │ ├── Export/ │ │ │ │ └── NameClash.rakudoc │ │ │ ├── IO/ │ │ │ │ ├── BinaryMode.rakudoc │ │ │ │ ├── Chdir.rakudoc │ │ │ │ ├── Chmod.rakudoc │ │ │ │ ├── Chown.rakudoc │ │ │ │ ├── Copy.rakudoc │ │ │ │ ├── Cwd.rakudoc │ │ │ │ ├── Dir.rakudoc │ │ │ │ ├── DoesNotExist.rakudoc │ │ │ │ ├── Flush.rakudoc │ │ │ │ ├── Link.rakudoc │ │ │ │ ├── Lock.rakudoc │ │ │ │ ├── Mkdir.rakudoc │ │ │ │ ├── Move.rakudoc │ │ │ │ ├── Rename.rakudoc │ │ │ │ ├── Rmdir.rakudoc │ │ │ │ ├── Symlink.rakudoc │ │ │ │ └── Unlink.rakudoc │ │ │ ├── IO.rakudoc │ │ │ ├── Inheritance/ │ │ │ │ ├── NotComposed.rakudoc │ │ │ │ └── Unsupported.rakudoc │ │ │ ├── Method/ │ │ │ │ ├── InvalidQualifier.rakudoc │ │ │ │ ├── NotFound.rakudoc │ │ │ │ └── Private/ │ │ │ │ ├── Permission.rakudoc │ │ │ │ └── Unqualified.rakudoc │ │ │ ├── Mixin/ │ │ │ │ └── NotComposable.rakudoc │ │ │ ├── NYI.rakudoc │ │ │ ├── NoDispatcher.rakudoc │ │ │ ├── Numeric/ │ │ │ │ ├── CannotConvert.rakudoc │ │ │ │ ├── DivideByZero.rakudoc │ │ │ │ └── Real.rakudoc │ │ │ ├── OS.rakudoc │ │ │ ├── Obsolete.rakudoc │ │ │ ├── OutOfRange.rakudoc │ │ │ ├── Package/ │ │ │ │ └── Stubbed.rakudoc │ │ │ ├── Parameter/ │ │ │ │ ├── Default.rakudoc │ │ │ │ ├── MultipleTypeConstraints.rakudoc │ │ │ │ ├── Placeholder.rakudoc │ │ │ │ ├── Twigil.rakudoc │ │ │ │ └── WrongOrder.rakudoc │ │ │ ├── Phaser/ │ │ │ │ ├── Multiple.rakudoc │ │ │ │ └── PrePost.rakudoc │ │ │ ├── Placeholder/ │ │ │ │ ├── Block.rakudoc │ │ │ │ └── Mainline.rakudoc │ │ │ ├── Pod.rakudoc │ │ │ ├── Proc/ │ │ │ │ ├── Async/ │ │ │ │ │ ├── AlreadyStarted.rakudoc │ │ │ │ │ ├── BindOrUse.rakudoc │ │ │ │ │ ├── CharsOrBytes.rakudoc │ │ │ │ │ ├── MustBeStarted.rakudoc │ │ │ │ │ ├── OpenForWriting.rakudoc │ │ │ │ │ └── TapBeforeSpawn.rakudoc │ │ │ │ ├── Async.rakudoc │ │ │ │ └── Unsuccessful.rakudoc │ │ │ ├── Promise/ │ │ │ │ ├── CauseOnlyValidOnBroken.rakudoc │ │ │ │ └── Vowed.rakudoc │ │ │ ├── Redeclaration.rakudoc │ │ │ ├── Role/ │ │ │ │ └── Initialization.rakudoc │ │ │ ├── Scheduler/ │ │ │ │ └── CueInNaNSeconds.rakudoc │ │ │ ├── Seq/ │ │ │ │ └── Consumed.rakudoc │ │ │ ├── Sequence/ │ │ │ │ └── Deduction.rakudoc │ │ │ ├── Signature/ │ │ │ │ ├── NameClash.rakudoc │ │ │ │ └── Placeholder.rakudoc │ │ │ ├── Str/ │ │ │ │ ├── Match/ │ │ │ │ │ └── x.rakudoc │ │ │ │ └── Numeric.rakudoc │ │ │ ├── StubCode.rakudoc │ │ │ ├── Syntax/ │ │ │ │ ├── Augment/ │ │ │ │ │ └── WithoutMonkeyTyping.rakudoc │ │ │ │ ├── Comment/ │ │ │ │ │ └── Embedded.rakudoc │ │ │ │ ├── Confused.rakudoc │ │ │ │ ├── InfixInTermPosition.rakudoc │ │ │ │ ├── Malformed.rakudoc │ │ │ │ ├── Missing.rakudoc │ │ │ │ ├── NegatedPair.rakudoc │ │ │ │ ├── NoSelf.rakudoc │ │ │ │ ├── Number/ │ │ │ │ │ └── RadixOutOfRange.rakudoc │ │ │ │ ├── P5.rakudoc │ │ │ │ ├── Perl5Var.rakudoc │ │ │ │ ├── Regex/ │ │ │ │ │ ├── Adverb.rakudoc │ │ │ │ │ └── SolitaryQuantifier.rakudoc │ │ │ │ ├── Reserved.rakudoc │ │ │ │ ├── Self/ │ │ │ │ │ └── WithoutObject.rakudoc │ │ │ │ ├── Signature/ │ │ │ │ │ └── InvocantMarker.rakudoc │ │ │ │ ├── Term/ │ │ │ │ │ └── MissingInitializer.rakudoc │ │ │ │ ├── UnlessElse.rakudoc │ │ │ │ └── Variable/ │ │ │ │ ├── Match.rakudoc │ │ │ │ ├── Numeric.rakudoc │ │ │ │ └── Twigil.rakudoc │ │ │ ├── Syntax.rakudoc │ │ │ ├── Temporal/ │ │ │ │ └── InvalidFormat.rakudoc │ │ │ ├── Temporal.rakudoc │ │ │ ├── TypeCheck/ │ │ │ │ ├── Assignment.rakudoc │ │ │ │ ├── Binding.rakudoc │ │ │ │ ├── Return.rakudoc │ │ │ │ └── Splice.rakudoc │ │ │ ├── TypeCheck.rakudoc │ │ │ └── Undeclared.rakudoc │ │ ├── atomicint.rakudoc │ │ ├── independent-routines.rakudoc │ │ └── utf8.rakudoc │ └── announcements.rakudoc ├── lib/ │ └── Pod/ │ ├── Cache.rakumod │ └── Convenience.rakumod ├── resources/ │ └── i18n/ │ ├── de/ │ │ └── README.de.md │ ├── es/ │ │ └── README.es.md │ ├── fr/ │ │ └── README.fr.md │ ├── it/ │ │ └── README.it.md │ ├── jp/ │ │ └── README.jp.md │ ├── nl/ │ │ └── README.nl.md │ ├── pt/ │ │ └── README.pt.md │ └── zh/ │ └── README.zh.md ├── t/ │ ├── 00-meta.rakutest │ ├── 02-pod-valid.rakutest │ ├── 03-tests-valid.rakutest │ ├── 04-trailing-whitespace.rakutest │ ├── 05-tabs.rakutest │ ├── 06-double-dots.rakutest │ ├── 07-duplicates.rakutest │ ├── 08-headings.rakutest │ ├── 09-final-newline.rakutest │ ├── 10-vim-mode.rakutest │ ├── 11-return-type.rakutest │ ├── 12-perl-nbsp.rakutest │ ├── 13-braces.rakutest │ ├── 14-routine-definitions.rakutest │ ├── 15-word-variants.rakutest │ ├── 16-an-grammar.rakutest │ ├── 17-space-after-comma.rakutest │ ├── 18-rakuast-validate.rakutest │ ├── 19-examples-compilation.rakutest │ ├── 20-camelia-invocations.rakutest │ ├── 21-version-release.rakutest │ ├── 22-glossary-sorted.rakutest │ ├── 23-aspell.rakutest │ ├── 24-words.rakutest │ └── pws/ │ ├── code.pws │ └── words.pws ├── type-graph.txt ├── util/ │ ├── clean-spell │ ├── create-brackets-table.raku │ ├── dumpast.raku │ ├── github-action-test.sh │ ├── missing-types.raku │ ├── new-type.raku │ ├── perl-nbsp.raku │ ├── sort-words.raku │ ├── test-modified.sh │ ├── test-website.raku │ ├── unskip.raku │ └── update-and-test ├── writing-docs/ │ ├── CREATING-NEW-DOCS.md │ ├── EXAMPLES.md │ ├── INDEXING.md │ ├── README.md │ ├── STYLEGUIDE.md │ └── TESTING.md └── xt/ ├── 01-raku-version.rakutest ├── check-signatures.rakutest ├── rakuast-compare.rakutest ├── rakudoc-l.rakutest ├── rakudoc-types.rakutest ├── search-categories.rakutest └── type-graph.rakutest