├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── copilot-instructions.md └── workflows │ ├── build-and-publish-elm-silent-teacher.yml │ ├── build-and-publish-website-pinevm.yml │ ├── build-native-tools.yml │ ├── copilot-setup-steps.yml │ ├── delete-old-artifacts.yml │ ├── publish-docker-image.yml │ ├── publish-to-release.yml │ └── test-and-publish.yml ├── .gitignore ├── CONTRIBUTING.md ├── License.txt ├── README.md ├── azure-pipelines.yml ├── backlog.md ├── explore ├── 2018-08-06.Maintain-State-In-Production.md ├── 2018.deploy-to-azure-web-app │ ├── 2018.deploy-to-azure-web-app.md │ └── image │ │ ├── 2018-11-17.get-certificate-for-elm-make.png │ │ └── 2018-11-17.install-certificate-for-elm-make-in-azure-app.png ├── 2019-02.deploy-using-docker │ └── 2019-02.deploy-using-docker.md ├── 2019-02.ssl-certificate-from-letsencrypt │ └── 2019-02.ssl-certificate-from-letsencrypt.md ├── 2019-05-08.migrating-drts-game-to-kalmit │ └── 2019-05-08.migrating-drts-game-to-kalmit.md ├── 2019-07-31.support-docker │ ├── 2019-07-31.docker-desktop-install-succeeded.png │ ├── 2019-07-31.docker-desktop-installing-hangs.png │ ├── 2019-07-31.popup-offers-a-new-version-of-docker-desktop.png │ └── 2019-07-31.support-docker.md ├── 2019-08-31.interface-between-process-and-host │ └── 2019-08-31.interface-between-process-and-host.md ├── 2020-02-02.memory-leak │ ├── 2020-02-02.elm-fullstack-demo-commit-c1d3d2a0.png │ ├── 2020-02-02.elm-fullstack-demo-memory-leak-before-graph.png │ ├── Readme.md │ └── demo-memory-leak │ │ ├── .gitignore │ │ ├── Program.cs │ │ ├── TestSetup.cs │ │ ├── demo-memory-leak.csproj │ │ └── elm-app │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ └── Backend │ │ └── Main.elm ├── 2020-03-02.design-migrations │ └── 2020-03-02.design-migrations.md ├── 2020-04-01.automate-testing │ ├── 2020-04-01.automate-testing-azure-pipelines-report.png │ └── 2020-04-01.automate-testing.md ├── 2020-04-23-elm-fullstack-streamline-deployment │ └── 2020-04-23-elm-fullstack-streamline-deployment.md ├── 2020-04-28-implement-persistent-process │ └── 2020-04-28-implement-persistent-process.md ├── 2020-05-22-improve-deployment-conventions.md ├── 2020-07-30-elm-evaluation-engine-implementation-failures-learnings.md ├── 2020-08-10-explore-editing-feedback │ ├── 2020-08-10-explore-monaco-editor.js │ └── 2020-08-10-integrate-artifact-in-iframe.html ├── 2020-09-18-automate-testing-the-evaluation-engine.md ├── 2020-10-18-this-weeks-discoveries.md ├── 2020-10-24-explore-future-of-the-evaluation-engine.md ├── 2021-06-16-install-elm-fs-on-ubuntu.md ├── 2021-07-20-functional-design-and-user-interfaces-for-inspection │ ├── 2021-07-20-elm-debugger-in-snake-game-example.png │ └── 2021-07-20-functional-design-and-user-interfaces-for-inspection.md └── 2025-04-27-considering-compilation-from-elm-to-c-and-dotnet.md ├── guide ├── customizing-elm-app-builds-with-compilation-interfaces.md ├── elm-silent-teacher.md ├── how-to-build-a-backend-app-in-elm.md ├── how-to-build-a-full-stack-web-app-in-elm.md ├── how-to-configure-and-deploy-an-elm-backend-app.md ├── image │ ├── 2020-12-31-elm-editor-with-project-freemake.png │ ├── 2021-01-16-elm-editor-save-project-diff-based.png │ ├── 2021-03-17-elm-editor-user-interface.png │ ├── 2021-10-09-elm-editor-completion-suggestions.png │ ├── 2021-10-09-elm-editor-error-description-on-mouse-hover.png │ ├── 2021-10-09-elm-editor-hover-provider-documentation-from-reference.png │ └── 2023-04-05-elm-silent-teacher-challenge-complete.png ├── persistence-of-application-state-in-pine.md ├── presentation │ └── 2021-07-21T16 Elm Fullstack _ `elm-fs`.pptx └── state-migrations-in-web-service-applications.md └── implement ├── .dockerignore ├── CHANGELOG.md ├── Dockerfile ├── Pine.Core ├── .gitignore ├── BytesConversions.cs ├── CommandLineInterface.cs ├── DotNetAssembly.cs ├── Elm │ ├── BundledElmEnvironments.cs │ ├── ElmValue.cs │ ├── ElmValueEncoding.cs │ └── ElmValueInterop.cs ├── EnumerableExtension.cs ├── Expression.cs ├── Json │ ├── EncodePineExpressionAsJson.cs │ ├── JsonConverterForChoiceType.cs │ ├── JsonConverterForChoiceType.md │ └── JsonConverterForPineValue.cs ├── KernelFunction.cs ├── LanguageServerProtocol │ ├── ClientCapabilities.cs │ ├── CompletionParams.cs │ ├── Diagnostic.cs │ ├── DidChangeTextDocumentParams.cs │ ├── DidSaveTextDocumentParams.cs │ ├── DocumentSymbol.cs │ ├── DocumentSymbolClientCapabilities.cs │ ├── FileEvent.cs │ ├── FileOperationPattern.cs │ ├── FileSystemWatcher.cs │ ├── FormattingOptions.cs │ ├── Hover.cs │ ├── InitializeParams.cs │ ├── InitializeResult.cs │ ├── Location.cs │ ├── LocationLink.cs │ ├── OptionalVersionedTextDocumentIdentifier.cs │ ├── ParticipentInfo.cs │ ├── PublishDiagnosticsParams.cs │ ├── Range.cs │ ├── RegistrationParams.cs │ ├── RenameParams.cs │ ├── ServerCapabilities.cs │ ├── TextDocumentContentChangeEvent.cs │ ├── TextDocumentEdit.cs │ ├── TextDocumentIdentifier.cs │ ├── TextDocumentItem.cs │ ├── TextDocumentPositionParams.cs │ ├── TextEdit.cs │ ├── VersionedTextDocumentIdentifier.cs │ ├── WorkspaceEdit.cs │ ├── WorkspaceFolder.cs │ └── WorkspaceFoldersChangeEvent.cs ├── Maybe.cs ├── MaybeExtension.cs ├── Pine.Core.csproj ├── PineVM │ ├── IPineVM.cs │ ├── LockingPineVM.cs │ ├── PineVMValues.cs │ ├── PopularExpression.cs │ ├── PopularExpression │ │ ├── Bytes.Decode.decodeBlobAsCharsRec.json │ │ ├── Bytes.Decode.decodeUtf8Char.json │ │ ├── Bytes.Encode.encodeCharAsBlob.json │ │ ├── Bytes.Encode.encodeCharsAsBlobHelp.json │ │ ├── Char.isLower.json │ │ ├── Char.isUpper.json │ │ ├── Char.toCode.json │ │ ├── Common.assocListGetWithIndexHelper.json │ │ ├── Common.listUniqueHelp.json │ │ ├── Elm.Kernel.Parser.chompWhileHelp.json │ │ ├── Elm.Kernel.Parser.countOffsetsInString.json │ │ ├── Elm.Kernel.Parser.findSubString.json │ │ ├── Elm.Kernel.Parser.indexOf.json │ │ ├── List.all.json │ │ ├── List.any.json │ │ ├── List.concatMap.json │ │ ├── List.filterHelp.json │ │ ├── List.filterMapHelp.json │ │ ├── List.foldl.json │ │ ├── List.intersperseHelp.json │ │ ├── List.mapHelp.json │ │ ├── List.member.json │ │ ├── ParserFast.skipWhileHelp.json │ │ ├── ParserFast.skipWhileWhitespaceHelp.json │ │ ├── ParserFast.skipWhileWithoutLinebreakHelp.json │ │ ├── Pine.computeValueFromString_2024.json │ │ ├── Pine.unsafeUnsignedBlobValueFromInt.json │ │ ├── Pine.valueFromChar.json │ │ ├── Rope.prependTo.json │ │ ├── String.linesHelper.json │ │ ├── String.slice.json │ │ ├── adaptivePartialApplication.json │ │ ├── assocListGet.json │ │ ├── compare.json │ │ ├── compareLists.json │ │ ├── compareStrings.json │ │ ├── countPineListValueContent.json │ │ ├── countPineValueContent.json │ │ ├── danfishgold.Base64.Decode.fromBytes.body.json │ │ ├── danfishgold.Base64.Encode.toBytes.body.json │ │ ├── dictGet-combined.json │ │ ├── dictGet.json │ │ ├── dictGetAfterCompare.json │ │ ├── dictKeys.json │ │ ├── dictSizeHelp.json │ │ ├── dictToList.json │ │ ├── elmCompiledRecordAccess.json │ │ ├── eq.json │ │ ├── isPineBlob.json │ │ ├── isPineList.json │ │ └── listsEqualRecursive.json │ └── PopularValue │ │ ├── Basics.compare.exposed.json │ │ ├── Basics.eq.exposed.json │ │ ├── Basics.idiv.exposed.json │ │ ├── List.member.exposed.json │ │ ├── ParserFast.isAlphaNumOrUnderscore.exposed.json │ │ ├── Pine.computeValueFromString_2024.aggregate-env.json │ │ ├── String.any.exposed.json │ │ ├── String.slice.exposed.json │ │ ├── danfishgold.Base64.Decode.fromBytes.aggregate-env-funcs.json │ │ ├── danfishgold.Base64.Encode.toBytes.aggregate-env-funcs.json │ │ ├── predicate_first_arg_equals_ASCII_char_minus_45.json │ │ ├── predicate_first_arg_equals_ASCII_char_space_32.json │ │ ├── predicate_first_arg_is_not_ASCII_carriage_return_or_newline.json │ │ ├── predicate_first_arg_is_not_ASCII_quote_or_backslash.json │ │ ├── predicate_nestableComment_char_is_not_elm_multiline_comment_open_or_close.json │ │ └── predicate_parser_char_is_alpha_num_or_underscore.json ├── PineValue.cs ├── PineValueCompactBuild.cs ├── PineValueComposition.cs ├── PineValueHashTree.cs ├── PopularEncodings │ ├── ExpressionEncoding.cs │ ├── IntegerEncoding.cs │ ├── PineValueBinaryEncoding.cs │ ├── StringEncoding.cs │ └── TreeWithStringPathEncoding.cs ├── PopularValues.cs ├── README.md ├── Result.cs ├── ResultExtension.cs ├── ReusedInstances.cs ├── Testing.cs ├── TreeNodeWithStringPath.cs ├── UnicodeUtility.cs └── package-icon.png ├── PineTest └── Pine.UnitTests │ ├── ExpressionTests.cs │ ├── JsonConverterForChoiceTypeTests.cs │ ├── JsonConverterForPineValueTests.cs │ ├── Pine.UnitTests.csproj │ ├── PineMaybeTests.cs │ ├── PineResultTests.cs │ ├── PineValueCompositionTests.cs │ └── ReusedInstancesTests.cs ├── example-apps ├── .gitignore ├── cli-demo │ ├── elm.json │ └── src │ │ ├── App.elm │ │ └── Platform │ │ └── CommandLineApp.elm ├── demo-backend-state │ ├── elm.json │ └── src │ │ ├── Backend │ │ ├── Main.elm │ │ ├── MigrateState.elm │ │ └── State.elm │ │ ├── Common.elm │ │ ├── CompilationInterface │ │ ├── ElmMake.elm │ │ └── GenerateJsonConverters.elm │ │ ├── Frontend │ │ └── Main.elm │ │ ├── ListDict.elm │ │ └── Platform │ │ └── WebService.elm ├── docker-image-default-app │ ├── README.md │ ├── elm.json │ └── src │ │ ├── Backend │ │ ├── Main.elm │ │ └── MigrateState.elm │ │ ├── CompilationInterface │ │ ├── ElmMake.elm │ │ └── SourceFiles.elm │ │ ├── Frontend │ │ ├── Main.elm │ │ ├── Markdown.elm │ │ ├── MarkdownElmUI.elm │ │ └── Visuals.elm │ │ └── Platform │ │ └── WebService.elm ├── elm-editor │ ├── .gitignore │ ├── README.md │ ├── default-app │ │ ├── elm.json │ │ └── src │ │ │ ├── Main.elm │ │ │ ├── Playground.elm │ │ │ └── SimpleGameDev.elm │ ├── elm-analyse.json │ ├── elm-core-modules │ │ ├── LICENSE │ │ ├── explicit-import │ │ │ ├── Array.elm │ │ │ ├── Bitwise.elm │ │ │ ├── Dict.elm │ │ │ ├── Set.elm │ │ │ └── Task.elm │ │ └── implicit-import │ │ │ ├── Basics.elm │ │ │ ├── Char.elm │ │ │ ├── List.elm │ │ │ ├── Maybe.elm │ │ │ ├── Result.elm │ │ │ ├── String.elm │ │ │ └── Tuple.elm │ ├── elm-kernel-modules │ │ ├── browser │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Browser.elm │ │ │ │ └── Browser │ │ │ │ ├── AnimationManager.elm │ │ │ │ ├── Dom.elm │ │ │ │ ├── Events.elm │ │ │ │ └── Navigation.elm │ │ ├── html │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ ├── Html.elm │ │ │ │ └── Html │ │ │ │ ├── Attributes.elm │ │ │ │ ├── Events.elm │ │ │ │ ├── Keyed.elm │ │ │ │ └── Lazy.elm │ │ ├── http │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ └── Http.elm │ │ ├── json │ │ │ ├── LICENSE │ │ │ └── src │ │ │ │ └── Json │ │ │ │ ├── Decode.elm │ │ │ │ └── Encode.elm │ │ └── time │ │ │ ├── LICENSE │ │ │ └── src │ │ │ └── Time.elm │ ├── elm.json │ ├── src │ │ ├── Backend │ │ │ ├── Main.elm │ │ │ ├── Route.elm │ │ │ ├── VolatileProcess.csx │ │ │ └── VolatileProcess.elm │ │ ├── Common.elm │ │ ├── CompilationInterface │ │ │ ├── ElmMake.elm │ │ │ ├── GenerateJsonConverters.elm │ │ │ └── SourceFiles.elm │ │ ├── CompileElmApp.elm │ │ ├── CompileElmAppListExtra.elm │ │ ├── ElmMakeExecutableFile.elm │ │ ├── FNV1a.elm │ │ ├── FileTree.elm │ │ ├── FileTreeInWorkspace.elm │ │ ├── Frontend │ │ │ ├── BrowserApplicationInitWithTime.elm │ │ │ ├── ContainerHtml.elm │ │ │ ├── FileEditor.elm │ │ │ ├── Main.elm │ │ │ ├── MonacoEditor.elm │ │ │ ├── Visuals.elm │ │ │ └── WorkspaceStateInUrl.elm │ │ ├── FrontendBackendInterface.elm │ │ ├── LanguageService.elm │ │ ├── LanguageServiceInterface.elm │ │ ├── LanguageServiceWorker.elm │ │ ├── MonacoHtml.elm │ │ ├── Pine.elm │ │ ├── Platform │ │ │ └── WebService.elm │ │ ├── Test │ │ │ ├── TestSyntaxHighlighting.elm │ │ │ └── monaco-playground.js │ │ └── WorkspaceState_2021_01.elm │ ├── static │ │ ├── favicon.svg │ │ ├── monarch.js │ │ └── robots.txt │ ├── tests │ │ ├── LanguageServiceTests.elm │ │ └── WorkspaceStateModelTests.elm │ └── web-service.json ├── minimal-backend-hello-world │ ├── README.md │ ├── elm.json │ └── src │ │ ├── Backend │ │ └── Main.elm │ │ └── Platform │ │ └── WebService.elm ├── rich-chat-room │ ├── README.md │ ├── elm-analyse.json │ ├── elm.json │ ├── src │ │ ├── Backend │ │ │ ├── Main.elm │ │ │ └── MigrateState.elm │ │ ├── CompilationInterface │ │ │ ├── ElmMake.elm │ │ │ ├── GenerateJsonConverters.elm │ │ │ └── SourceFiles.elm │ │ ├── Conversation.elm │ │ ├── Frontend │ │ │ ├── Main.elm │ │ │ ├── PlayAudio.elm │ │ │ └── Visuals.elm │ │ ├── FrontendBackendInterface.elm │ │ └── Platform │ │ │ └── WebService.elm │ └── static │ │ └── chat.message-added.0.mp3 └── test-database-scale │ ├── elm.json │ └── src │ ├── Backend │ ├── ExposeFunctionsToAdmin.elm │ ├── Main.elm │ ├── MigrateState.elm │ └── State.elm │ ├── CompilationInterface │ ├── ElmMake.elm │ └── GenerateJsonConverters.elm │ ├── Frontend │ └── Main.elm │ ├── FrontendBackendInterface.elm │ └── Platform │ └── WebService.elm ├── history ├── 2024-11-01-compiler-bundle │ └── elm-syntax-parser-and-compiler.json.gzip ├── 2024-11-30-compiler-bundle │ └── elm-syntax-parser-and-compiler.json.gzip ├── 2024-12-31-compiler-bundle │ └── elm-syntax-parser-and-compiler.json.gzip └── 2025-04-13-compiler-bundle │ └── elm-syntax-parser-and-compiler.json.gzip ├── implementation-rules.md ├── lib └── FluffySpoon.AspNet.EncryptWeMust.dll ├── native-tools ├── EchoJson.cs ├── Program.cs └── native-tools.csproj ├── pine ├── AdminInterface │ └── AdminInterfaceJson.cs ├── CommandExtension.cs ├── Elm │ ├── AVH4ElmFormatBinaries.cs │ ├── ElmAppDependencyResolution.cs │ ├── ElmCompiler.cs │ ├── ElmCompilerCache.cs │ ├── ElmPackageSource.cs │ ├── ElmValueJsonValueEncoding.cs │ ├── LanguageServer.cs │ ├── LanguageServerRpcTarget.cs │ ├── LanguageServiceInterface │ │ ├── FileTree.cs │ │ ├── LanguageServiceRequest.cs │ │ └── LanguageServiceResponse.cs │ ├── LanguageServiceState.cs │ ├── MonacoEditor │ │ └── MonacoEditor.cs │ ├── Platform │ │ ├── ApplyUpdateReport.cs │ │ ├── CommandLineApp.cs │ │ ├── VolatileProcessHost.cs │ │ ├── WebServiceApp.cs │ │ └── WebServiceInterface.cs │ ├── elm-compiler │ │ ├── .gitignore │ │ ├── elm-analyse.json │ │ ├── elm-kernel-modules │ │ │ ├── Array.elm │ │ │ ├── Basics.elm │ │ │ ├── Bitwise.elm │ │ │ ├── Bytes.elm │ │ │ ├── Bytes │ │ │ │ ├── Decode.elm │ │ │ │ └── Encode.elm │ │ │ ├── Char.elm │ │ │ ├── Dict.elm │ │ │ ├── Elm │ │ │ │ └── Kernel │ │ │ │ │ └── Parser.elm │ │ │ ├── Json │ │ │ │ ├── Decode.elm │ │ │ │ └── Encode.elm │ │ │ ├── List.elm │ │ │ ├── Maybe.elm │ │ │ ├── Parser.elm │ │ │ ├── Parser │ │ │ │ └── Advanced.elm │ │ │ ├── Result.elm │ │ │ ├── Set.elm │ │ │ ├── String.elm │ │ │ ├── Time.elm │ │ │ ├── Tuple.elm │ │ │ ├── Url.elm │ │ │ └── Url │ │ │ │ ├── Parser.elm │ │ │ │ └── Parser │ │ │ │ ├── Internal.elm │ │ │ │ └── Query.elm │ │ ├── elm-syntax-encode-json │ │ │ └── src │ │ │ │ └── Elm │ │ │ │ ├── Json │ │ │ │ └── Util.elm │ │ │ │ └── Syntax │ │ │ │ └── Encode │ │ │ │ ├── ModuleName.elm │ │ │ │ ├── Node.elm │ │ │ │ ├── Range.elm │ │ │ │ └── TypeAnnotation.elm │ │ ├── elm-syntax │ │ │ └── src │ │ │ │ ├── Elm │ │ │ │ ├── Dependency.elm │ │ │ │ ├── Interface.elm │ │ │ │ ├── Internal │ │ │ │ │ └── RawFile.elm │ │ │ │ ├── Parser.elm │ │ │ │ ├── Parser │ │ │ │ │ ├── Base.elm │ │ │ │ │ ├── Comments.elm │ │ │ │ │ ├── Declarations.elm │ │ │ │ │ ├── Expose.elm │ │ │ │ │ ├── Expression.elm │ │ │ │ │ ├── File.elm │ │ │ │ │ ├── Imports.elm │ │ │ │ │ ├── Layout.elm │ │ │ │ │ ├── Modules.elm │ │ │ │ │ ├── Patterns.elm │ │ │ │ │ ├── Tokens.elm │ │ │ │ │ └── TypeAnnotation.elm │ │ │ │ ├── RawFile.elm │ │ │ │ └── Syntax │ │ │ │ │ ├── Comments.elm │ │ │ │ │ ├── Declaration.elm │ │ │ │ │ ├── Documentation.elm │ │ │ │ │ ├── Exposing.elm │ │ │ │ │ ├── Expression.elm │ │ │ │ │ ├── File.elm │ │ │ │ │ ├── Import.elm │ │ │ │ │ ├── Infix.elm │ │ │ │ │ ├── Module.elm │ │ │ │ │ ├── ModuleName.elm │ │ │ │ │ ├── Node.elm │ │ │ │ │ ├── Pattern.elm │ │ │ │ │ ├── Range.elm │ │ │ │ │ ├── Signature.elm │ │ │ │ │ ├── Type.elm │ │ │ │ │ ├── TypeAlias.elm │ │ │ │ │ └── TypeAnnotation.elm │ │ │ │ ├── List │ │ │ │ └── Extra.elm │ │ │ │ ├── ParserFast.elm │ │ │ │ ├── ParserWithComments.elm │ │ │ │ └── Rope.elm │ │ ├── elm.json │ │ ├── other-library-modules │ │ │ └── BigInt.elm │ │ ├── src │ │ │ ├── Base64.elm │ │ │ ├── Base64 │ │ │ │ ├── Decode.elm │ │ │ │ └── Encode.elm │ │ │ ├── Common.elm │ │ │ ├── CompileBackendApp.elm │ │ │ ├── CompileElmApp.elm │ │ │ ├── CompileElmAppListExtra.elm │ │ │ ├── CompileElmAppMain.elm │ │ │ ├── CompileElmAppWithStateShim.elm │ │ │ ├── ElmCompiler.elm │ │ │ ├── ElmCompilerConstruction.elm │ │ │ ├── ElmInteractive.elm │ │ │ ├── ElmInteractiveCoreModules.elm │ │ │ ├── ElmInteractiveKernelModules.elm │ │ │ ├── ElmInteractiveMain.elm │ │ │ ├── ElmInteractiveParser.elm │ │ │ ├── ElmInteractiveSubmissionParser.elm │ │ │ ├── EncodeElmSyntaxAsPineValue.elm │ │ │ ├── FNV1a.elm │ │ │ ├── FileTree.elm │ │ │ ├── FirCompiler.elm │ │ │ ├── Frontend │ │ │ │ └── MonacoEditor.elm │ │ │ ├── Hex.elm │ │ │ ├── LanguageService.elm │ │ │ ├── LanguageServiceInterface.elm │ │ │ ├── Main.elm │ │ │ └── Pine.elm │ │ └── tests │ │ │ ├── CompileElmAppTests.elm │ │ │ ├── ElmCompilerConstructionTests.elm │ │ │ ├── ElmCompilerTests.elm │ │ │ ├── ElmInteractiveTests.elm │ │ │ ├── FirCompilerTests.elm │ │ │ └── PineTests.elm │ └── learn-elm │ │ ├── .gitignore │ │ ├── elm-analyse.json │ │ ├── elm.json │ │ └── src │ │ ├── CompilationInterface │ │ └── ElmMake.elm │ │ └── Frontend │ │ ├── BrowserApplicationInitWithTime.elm │ │ ├── ElmExplorer.elm │ │ ├── ElmSilentTeacher.elm │ │ └── ElmSilentTeacher │ │ ├── Build.elm │ │ └── Exercise.elm ├── Elm019 │ ├── Elm019Binaries.cs │ ├── ElmJsonStructure.cs │ ├── ElmMakeReport.cs │ ├── ElmMakeRunner.cs │ └── ElmPackage.cs ├── ElmInteractive │ ├── CompiledModulesCache.cs │ ├── ElmInteractive.cs │ ├── ElmInteractiveEnvironment.cs │ ├── InteractiveSession.cs │ ├── InteractiveSessionConfig.cs │ ├── InteractiveSessionPine.cs │ └── TestElmInteractive.cs ├── ElmSyntax │ ├── ElmModule.cs │ ├── ElmSyntaxParser.cs │ └── ElmSyntaxParserException.cs ├── ElmTestRs.cs ├── ElmTime │ ├── Cache.cs │ ├── ElmAppCompilation.cs │ ├── JsonAdapter.cs │ ├── ProcessStore.cs │ └── StateShim │ │ ├── InterfaceToHost │ │ └── InterfaceToHost.cs │ │ └── ProcessStateShimRequestReport.cs ├── Git │ └── LibGit2Sharp.cs ├── Gui │ ├── EventToElmApp.cs │ ├── MakeGuiCache.cs │ ├── MessageToHost.cs │ └── elm │ │ ├── .gitignore │ │ ├── elm-analyse.json │ │ ├── elm.json │ │ └── src │ │ ├── CompilationInterface │ │ └── GenerateJsonConverters.elm │ │ ├── Frontend │ │ ├── BrowserApplicationInitWithTime.elm │ │ ├── Main.elm │ │ ├── TestInteractive │ │ │ └── MainTest.elm │ │ ├── View.elm │ │ └── Visuals.elm │ │ └── HostInterface.elm ├── LanguageServer │ └── DelegatingJsonRpcMessageFormatter.cs ├── NativeDependency │ ├── DependencyFile.cs │ └── NativeDependencies.cs ├── Pine │ ├── BlobLibrary.cs │ ├── CacheByFileName.cs │ ├── CompilePineToDotNet │ │ ├── CSharpDeclarationOrder.cs │ │ ├── CompilationEnvironment.cs │ │ ├── CompileDictionarySyntax.cs │ │ ├── CompileModuleToCSharp.cs │ │ ├── CompileToAssembly.cs │ │ ├── CompileToCSharp.cs │ │ ├── CompileTypeSyntax.cs │ │ ├── CompiledExpression.cs │ │ ├── CompilerMutableCache.cs │ │ ├── EncodePineExpression.cs │ │ ├── FormatCSharpSyntaxRewriter.cs │ │ ├── PineCSharpSyntaxFactory.cs │ │ ├── PineKernelFunctions.cs │ │ ├── PineKernelFunctionsInline.cs │ │ └── ReducePineExpression.cs │ ├── Console.cs │ ├── DependenciesLoader.cs │ ├── ExecutableFile.cs │ ├── FileStore.cs │ ├── FileStoreExtension.cs │ ├── Filesystem.cs │ ├── GitPartialForCommitServer.cs │ ├── LoadComposition.cs │ ├── LoadFromElmEditor.cs │ ├── LoadFromGitHubOrGitLab.cs │ ├── LoadFromLocalFilesystem.cs │ ├── LoadFromPath.cs │ ├── PineVM │ │ ├── CodeAnalysis.cs │ │ ├── DynamicPGOShare.cs │ │ ├── GenericEvalException.cs │ │ ├── InvalidIntermediateCodeException.cs │ │ ├── ParseExpressionException.cs │ │ ├── PineVM.cs │ │ ├── PineVMCache.cs │ │ ├── PineVMConfiguration.cs │ │ ├── PineVMParseCache.cs │ │ ├── Precompiled.cs │ │ └── ProfilingPineVM.cs │ ├── ProcessWithLog.cs │ ├── TarArchive.cs │ ├── VolatileProcess.cs │ ├── VolatileProcessCSharp.cs │ ├── VolatileProcessNative.cs │ └── ZipArchive.cs ├── PineVM │ ├── PineIRCompiler.cs │ └── StackInstruction.cs ├── Platform │ └── WebService │ │ ├── Asp.cs │ │ ├── BuildConfigurationFromArguments.cs │ │ ├── Configuration.cs │ │ ├── InterfaceToHost │ │ ├── 2023_02_27 │ │ │ └── InterfaceToHost.cs │ │ └── InterfaceToHost.cs │ │ ├── PersistentProcessLiveRepresentation.cs │ │ ├── ProcessStoreSupportingMigrations │ │ └── ProcessStoreSupportingMigrations.cs │ │ ├── PublicAppState.cs │ │ ├── RateLimit.cs │ │ ├── StartupAdminInterface.cs │ │ └── WebServiceConfigJson.cs ├── Program.cs ├── README.md ├── RunServer.cs ├── Test │ └── SelfTest.cs ├── UserSecrets.cs └── pine.csproj ├── prebuild ├── Program.cs ├── README.md └── prebuild.csproj ├── run-server-in-docker.ps1 ├── test-and-train ├── elm-interactive-scenarios-core │ ├── .gitignore │ ├── case-of │ │ └── steps │ │ │ ├── 151 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── conditional-expression │ │ └── steps │ │ │ ├── 10 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 11 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── declaration-syntax-after-space │ │ └── steps │ │ │ ├── 100 │ │ │ └── submission.txt │ │ │ └── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── deconstruct-pattern │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── DemoSyntax.elm │ │ │ │ └── Syntax.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 150 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 160 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 161 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 162 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 170 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 171 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 180 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 181 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 301 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 321 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 331 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 351 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 361 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 365 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-choice-type-expose-tags │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── ConsumeExposingNamedType.elm │ │ │ │ └── TypesExposingAll.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-choice-type │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── AppModule.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 300 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 301 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 302 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 308 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 319 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-array │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 150 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 151 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 152 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 160 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 161 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 162 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 163 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 301 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 303 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-basics │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 132 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 133 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 143 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 144 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 145 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 150 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 151 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 152 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 153 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 154 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 155 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 156 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 157 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 158 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 180 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 181 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 185 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 190 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 191 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 195 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 400 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 402 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 405 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 410 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 412 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 415 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 420 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 425 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 430 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 431 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 435 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 440 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 441 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 442 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 445 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 710 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 711 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 715 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 716 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 750 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 751 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 815 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-bitwise │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 114 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 115 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 129 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 133 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 313 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 314 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 321 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 330 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 332 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 334 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 335 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 336 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 339 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 360 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 361 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 371 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 376 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-char │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 114 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 133 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 143 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 170 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 171 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 221 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 222 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 231 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 232 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-debug │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 210 │ │ │ ├── expected-error-contains.txt │ │ │ └── submission.txt │ ├── elm-core-dict │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 160 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 170 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 180 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 190 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 300 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 301 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 303 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 333 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 413 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-global-exposing │ │ └── steps │ │ │ ├── 0 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 1 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 2 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 3 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 4 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-list │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 114 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 115 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 116 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 117 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 118 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 119 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 230 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 231 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 243 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 244 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 250 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 251 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 254 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 263 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 270 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 271 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 301 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 302 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 333 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 502 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 512 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 532 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 600 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 601 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 603 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 605 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 607 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 611 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 631 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 633 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 634 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 635 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-maybe │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 102 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 103 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 104 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-result │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 105 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 115 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 200 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 201 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 210 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 211 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 220 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 221 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 230 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-set │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 160 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 170 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 303 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 333 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-string │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 114 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 115 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 116 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 117 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 118 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 119 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 132 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 141 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 300 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 301 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 341 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 343 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 351 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 353 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 363 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 371 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 381 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 510 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 511 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 571 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 572 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 573 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 583 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 591 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 592 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 593 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 711 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 721 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 731 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 732 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 733 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 810 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 813 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 814 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 815 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 816 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 817 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 821 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 830 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 831 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 832 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 840 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 841 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 842 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 843 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 845 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 862 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 863 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 865 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 866 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 867 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 868 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-core-tuple │ │ └── steps │ │ │ ├── 0 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 1 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 2 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-syntax-float │ │ ├── disabled-steps │ │ │ └── 110 │ │ │ │ ├── expected-value.txt │ │ │ │ └── submission.txt │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 102 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 150 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 151 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 152 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-syntax-record-alias │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── AliasDecl.elm │ │ └── steps │ │ │ ├── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ └── submission.txt │ │ │ └── 133 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-syntax-record-update │ │ └── steps │ │ │ ├── 100 │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-syntax-record │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 300 │ │ │ └── submission.txt │ │ │ ├── 301 │ │ │ └── submission.txt │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 320 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 321 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── error-in-submission-does-not-influence-session │ │ └── steps │ │ │ ├── 0 │ │ │ └── submission.txt │ │ │ ├── 1 │ │ │ ├── expected-error-contains.txt │ │ │ └── submission.txt │ │ │ └── 2 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── errors │ │ └── steps │ │ │ ├── 131 │ │ │ ├── expected-error-contains.txt │ │ │ └── submission.txt │ │ │ ├── 133 │ │ │ ├── expected-error-contains.txt │ │ │ └── submission.txt │ │ │ ├── 141 │ │ │ ├── expected-error-contains.txt │ │ │ └── submission.txt │ │ │ ├── 143 │ │ │ ├── expected-error-contains.txt │ │ │ └── submission.txt │ │ │ └── 171 │ │ │ ├── expected-error-contains.txt │ │ │ └── submission.txt │ ├── fibonacci │ │ └── steps │ │ │ ├── 0 │ │ │ └── submission.txt │ │ │ ├── 1 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 2 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 3 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 4 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 5 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 6 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── combine-10-11-12 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── function-application-and-closure │ │ └── steps │ │ │ ├── 2 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 3 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 4 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── integer │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 104 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 150 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 160 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 170 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 180 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 210 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 211 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 213 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 214 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── interactive-submission-syntax │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── let-block │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── literals │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── mutual-recursion │ │ └── steps │ │ │ └── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── operator-application │ │ └── steps │ │ │ └── 173 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── partial-application │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── ModuleA.elm │ │ │ │ └── ModuleB.elm │ │ └── steps │ │ │ ├── 101 │ │ │ └── submission.txt │ │ │ ├── 102 │ │ │ └── submission.txt │ │ │ ├── 103 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 141 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 151 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── pine-kernel-bitwise │ │ └── steps │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 124 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 141 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 321 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 341 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 342 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── pine-kernel │ │ └── steps │ │ │ ├── equal-list-100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-125 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-127 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── equal-list-132 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-113 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-210 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-211 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-212 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-220 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── int-blob-equal-221 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── sort-int-00 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── sort-int-01 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── read-source-file │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── a-file.txt │ │ │ ├── directory │ │ │ │ └── file-alpha.txt │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── CompilationInterface │ │ │ │ └── SourceFiles.elm │ │ └── steps │ │ │ ├── 10 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 20 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 21 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── record-type-alias-constructor │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── RecordTypeAliasAsConstructor.elm │ │ └── steps │ │ │ ├── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── regression-100-recursive-function-in-let-block │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 101 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── regression-101-recursive-function-in-let-block │ │ ├── steps-disabled │ │ │ └── 100 │ │ │ │ ├── expected-value.txt │ │ │ │ └── submission.txt │ │ └── steps │ │ │ └── placeholder │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── shadow-declaration-from-previous-submission │ │ └── steps │ │ │ ├── 0 │ │ │ └── submission.txt │ │ │ ├── 1 │ │ │ └── submission.txt │ │ │ └── 2 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── use-declaration-from-context │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── AppModule.elm │ │ │ │ └── Namespace │ │ │ │ └── Beta.elm │ │ └── steps │ │ │ ├── 0 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 1 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ └── use-declaration-from-previous-submission │ │ └── steps │ │ ├── 40 │ │ └── submission.txt │ │ ├── 41 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 42 │ │ └── submission.txt │ │ ├── 43 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 00 │ │ └── submission.txt │ │ └── 01 │ │ ├── expected-value.txt │ │ └── submission.txt ├── elm-interactive-scenarios-kernel │ ├── .gitignore │ ├── elm-bytes │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── DecodeExtra.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 210 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 211 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 212 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 221 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 231 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 233 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 251 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 252 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 254 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 261 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 262 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 264 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 271 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 272 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 273 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 274 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 275 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 276 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 277 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 278 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 281 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 282 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 284 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 291 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 292 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 293 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 334 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 340 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 344 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 411 │ │ │ └── submission.txt │ │ │ ├── 412 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 413 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 414 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 415 │ │ │ └── submission.txt │ │ │ ├── 416 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 431 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 432 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 434 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 437 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 451 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 521 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-kernel-json-decode │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── DecodeExtra.elm │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 123 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 124 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 132 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 141 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 143 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 151 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 153 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 160 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 161 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 171 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 181 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 191 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 300 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 360 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 361 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 362 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 363 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 364 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 365 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 373 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 374 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 400 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 401 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 402 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 405 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 406 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 407 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 451 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 481 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 484 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 487 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 511 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 801 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 802 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 811 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 812 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-kernel-json-encode │ │ └── steps │ │ │ ├── 100 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 120 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 121 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 122 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 140 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 142 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 150 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 152 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 160 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 161 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 801 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 802 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-kernel-parser-advanced │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── CompositeParser.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 315 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 331 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 341 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 342 │ │ │ └── submission.txt │ │ │ ├── 343 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 344 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 351 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 420 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 421 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 423 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-kernel-parser-kernel │ │ └── steps │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 312 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 321 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 410 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 411 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 412 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 413 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 414 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 415 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-kernel-parser │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── CompositeParser.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 310 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 311 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 315 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 321 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 330 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 331 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 332 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 333 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 337 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 338 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 343 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 360 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 361 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 420 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 421 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 423 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 611 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 613 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 630 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 631 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 810 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 811 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 816 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 820 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 821 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 825 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 833 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 840 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 841 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── elm-kernel-url │ │ ├── context-app │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── TestParser.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 111 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 115 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 116 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 130 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 131 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 135 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 136 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 137 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 138 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 139 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 141 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 142 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 143 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 181 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 182 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 183 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 303 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 331 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 333 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 335 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 337 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ ├── lib-base64 │ │ ├── context-app │ │ │ ├── .gitignore │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ ├── Base64.elm │ │ │ │ ├── Decode.elm │ │ │ │ └── Encode.elm │ │ └── steps │ │ │ ├── 110 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 112 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 114 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ ├── 141 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ │ │ └── 144 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ └── lib-sha │ │ ├── context-app │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Base64.elm │ │ │ ├── Decode.elm │ │ │ ├── Encode.elm │ │ │ ├── Hex.elm │ │ │ ├── Internal │ │ │ └── SHA256.elm │ │ │ └── SHA256.elm │ │ └── steps │ │ ├── 510 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 511 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 530 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ └── 531 │ │ ├── expected-value.txt │ │ └── submission.txt └── elm-interactive-scenarios-train │ ├── elm-compiler-dependencies │ ├── context-app │ │ ├── .gitignore │ │ ├── elm-syntax-encode-json │ │ │ └── src │ │ │ │ └── Elm │ │ │ │ ├── Json │ │ │ │ └── Util.elm │ │ │ │ └── Syntax │ │ │ │ └── Encode │ │ │ │ ├── ModuleName.elm │ │ │ │ ├── Node.elm │ │ │ │ ├── Range.elm │ │ │ │ └── TypeAnnotation.elm │ │ ├── elm-syntax │ │ │ └── src │ │ │ │ ├── Elm │ │ │ │ ├── Dependency.elm │ │ │ │ ├── Interface.elm │ │ │ │ ├── Internal │ │ │ │ │ └── RawFile.elm │ │ │ │ ├── Parser.elm │ │ │ │ ├── Parser │ │ │ │ │ ├── Base.elm │ │ │ │ │ ├── Comments.elm │ │ │ │ │ ├── Declarations.elm │ │ │ │ │ ├── Expose.elm │ │ │ │ │ ├── Expression.elm │ │ │ │ │ ├── File.elm │ │ │ │ │ ├── Imports.elm │ │ │ │ │ ├── Layout.elm │ │ │ │ │ ├── Modules.elm │ │ │ │ │ ├── Patterns.elm │ │ │ │ │ ├── Tokens.elm │ │ │ │ │ └── TypeAnnotation.elm │ │ │ │ ├── RawFile.elm │ │ │ │ └── Syntax │ │ │ │ │ ├── Comments.elm │ │ │ │ │ ├── Declaration.elm │ │ │ │ │ ├── Documentation.elm │ │ │ │ │ ├── Exposing.elm │ │ │ │ │ ├── Expression.elm │ │ │ │ │ ├── File.elm │ │ │ │ │ ├── Import.elm │ │ │ │ │ ├── Infix.elm │ │ │ │ │ ├── Module.elm │ │ │ │ │ ├── ModuleName.elm │ │ │ │ │ ├── Node.elm │ │ │ │ │ ├── Pattern.elm │ │ │ │ │ ├── Range.elm │ │ │ │ │ ├── Signature.elm │ │ │ │ │ ├── Type.elm │ │ │ │ │ ├── TypeAlias.elm │ │ │ │ │ └── TypeAnnotation.elm │ │ │ │ ├── List │ │ │ │ └── Extra.elm │ │ │ │ ├── ParserFast.elm │ │ │ │ ├── ParserWithComments.elm │ │ │ │ └── Rope.elm │ │ ├── elm.json │ │ ├── src │ │ │ ├── Base64.elm │ │ │ ├── Base64 │ │ │ │ ├── Decode.elm │ │ │ │ └── Encode.elm │ │ │ ├── Common.elm │ │ │ ├── CompileBackendApp.elm │ │ │ ├── CompileElmApp.elm │ │ │ ├── CompileElmAppListExtra.elm │ │ │ ├── CompileElmAppWithStateShim.elm │ │ │ ├── FNV1a.elm │ │ │ ├── FileTree.elm │ │ │ ├── Frontend │ │ │ │ └── MonacoEditor.elm │ │ │ ├── Hex.elm │ │ │ ├── Internal │ │ │ │ └── SHA256.elm │ │ │ ├── LanguageService.elm │ │ │ ├── LanguageServiceInterface.elm │ │ │ └── SHA256.elm │ │ └── test-src │ │ │ ├── DecodeExtra.elm │ │ │ └── LanguageServiceTest.elm │ └── steps │ │ ├── 110 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 112 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 114 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 115 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 118 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 141 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 144 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 148 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 151 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 152 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 165 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 210 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 211 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 310 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 313 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 333 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 510 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 511 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 530 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 531 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 730 │ │ └── submission.txt │ │ ├── 731 │ │ └── submission.txt │ │ └── 733 │ │ ├── expected-value.txt │ │ └── submission.txt │ ├── elm-syntax-7-3-7 │ ├── context-app │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Elm │ │ │ ├── Dependency.elm │ │ │ ├── Interface.elm │ │ │ ├── Internal │ │ │ │ └── RawFile.elm │ │ │ ├── Parser.elm │ │ │ ├── Parser │ │ │ │ ├── Base.elm │ │ │ │ ├── Comments.elm │ │ │ │ ├── Declarations.elm │ │ │ │ ├── Expose.elm │ │ │ │ ├── Expression.elm │ │ │ │ ├── File.elm │ │ │ │ ├── Imports.elm │ │ │ │ ├── Layout.elm │ │ │ │ ├── Modules.elm │ │ │ │ ├── Patterns.elm │ │ │ │ ├── Tokens.elm │ │ │ │ └── TypeAnnotation.elm │ │ │ ├── RawFile.elm │ │ │ └── Syntax │ │ │ │ ├── Comments.elm │ │ │ │ ├── Declaration.elm │ │ │ │ ├── Documentation.elm │ │ │ │ ├── Exposing.elm │ │ │ │ ├── Expression.elm │ │ │ │ ├── File.elm │ │ │ │ ├── Import.elm │ │ │ │ ├── Infix.elm │ │ │ │ ├── Module.elm │ │ │ │ ├── ModuleName.elm │ │ │ │ ├── Node.elm │ │ │ │ ├── Pattern.elm │ │ │ │ ├── Range.elm │ │ │ │ ├── Signature.elm │ │ │ │ ├── Type.elm │ │ │ │ ├── TypeAlias.elm │ │ │ │ └── TypeAnnotation.elm │ │ │ ├── List │ │ │ └── Extra.elm │ │ │ ├── ParserFast.elm │ │ │ ├── ParserWithComments.elm │ │ │ └── Rope.elm │ └── steps │ │ ├── 111 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 112 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 113 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 122 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 123 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 133 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 134 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 143 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 144 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 310 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 311 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 313 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 321 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 371 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 531 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 533 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 543 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 611 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 711 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 720 │ │ └── submission.txt │ │ ├── 721 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 722 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 730 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 731 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 741 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ └── 751 │ │ ├── expected-value.txt │ │ └── submission.txt │ ├── elm-syntax-7 │ ├── README.md │ ├── context-app │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Combine.elm │ │ │ ├── Combine │ │ │ └── Char.elm │ │ │ ├── Elm │ │ │ ├── Dependency.elm │ │ │ ├── Interface.elm │ │ │ ├── Internal │ │ │ │ └── RawFile.elm │ │ │ ├── Operators.elm │ │ │ ├── Parser.elm │ │ │ ├── Parser │ │ │ │ ├── Base.elm │ │ │ │ ├── CombineTestUtil.elm │ │ │ │ ├── Comments.elm │ │ │ │ ├── Declarations.elm │ │ │ │ ├── Expose.elm │ │ │ │ ├── Expression.elm │ │ │ │ ├── File.elm │ │ │ │ ├── Imports.elm │ │ │ │ ├── Layout.elm │ │ │ │ ├── Modules.elm │ │ │ │ ├── Node.elm │ │ │ │ ├── Numbers.elm │ │ │ │ ├── Patterns.elm │ │ │ │ ├── Ranges.elm │ │ │ │ ├── State.elm │ │ │ │ ├── Tokens.elm │ │ │ │ ├── TypeAnnotation.elm │ │ │ │ ├── Typings.elm │ │ │ │ └── Whitespace.elm │ │ │ ├── Processing.elm │ │ │ ├── RawFile.elm │ │ │ └── Syntax │ │ │ │ ├── Comments.elm │ │ │ │ ├── Declaration.elm │ │ │ │ ├── Documentation.elm │ │ │ │ ├── Exposing.elm │ │ │ │ ├── Expression.elm │ │ │ │ ├── File.elm │ │ │ │ ├── Import.elm │ │ │ │ ├── Infix.elm │ │ │ │ ├── Module.elm │ │ │ │ ├── ModuleName.elm │ │ │ │ ├── Node.elm │ │ │ │ ├── Pattern.elm │ │ │ │ ├── Range.elm │ │ │ │ ├── Signature.elm │ │ │ │ ├── Type.elm │ │ │ │ ├── TypeAlias.elm │ │ │ │ └── TypeAnnotation.elm │ │ │ ├── Hex.elm │ │ │ └── List │ │ │ └── Extra.elm │ ├── disabled-steps │ │ └── 740 │ │ │ ├── expected-value.txt │ │ │ └── submission.txt │ └── steps │ │ ├── 111 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 311 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 321 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 371 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 531 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 533 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 611 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 711 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 720 │ │ └── submission.txt │ │ ├── 721 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 722 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 730 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ ├── 731 │ │ ├── expected-value.txt │ │ └── submission.txt │ │ └── 741 │ │ ├── expected-value.txt │ │ └── submission.txt │ └── list-range │ └── steps │ ├── 0 │ ├── expected-value.txt │ └── submission.txt │ ├── 1 │ ├── expected-value.txt │ └── submission.txt │ ├── 10 │ └── submission.txt │ ├── 11 │ └── submission.txt │ └── 20 │ └── submission.txt ├── test-elm-time ├── .gitignore ├── AVH4ElmFormatBinariesTests.cs ├── ApplyFunctionOnDatabaseTests.cs ├── CompileElmCompilerTests.cs ├── CompilePineToDotNetTests.cs ├── DatabaseScaleTests.cs ├── Elm019JsonFileParsingTests.cs ├── Elm019MakeReportParsingTests.cs ├── ElmAppCompilationInterfaceTests.cs ├── ElmCommandLineAppTests.cs ├── ElmEditorTests.cs ├── ElmInteractiveTests.cs ├── ElmLanguageServerTests.cs ├── ElmLanguageServiceTests.cs ├── ElmSyntaxTests.cs ├── ElmValueInteropTests.cs ├── ElmValueJsonValueEncodingTests.cs ├── ElmValueTests.cs ├── ElmWebServiceAppTests.cs ├── ElmWebServiceUsingVolatileProcessNativeTest.cs ├── EncodePineExpressionAsJsonTests.cs ├── ExampleAppsTests.cs ├── FormatCSharpSyntaxRewriterTests.cs ├── LoadCompositionTests.cs ├── LoadFromGitHubTests.cs ├── PGOTests.cs ├── ParseElmInteractiveSubmissionTests.cs ├── ParseElmModuleTextToPineValueTests.cs ├── PineExecutableBundleTests.cs ├── PineIRCompilerTests.cs ├── PineVMEncodeExpressionTests.cs ├── PineVMTests.cs ├── PineValueTests.cs ├── ProcessStoreSupportingMigrationsTests.cs ├── ProcessWithLogTests.cs ├── ProgramCommandMakeTests.cs ├── TestSetup.cs ├── ValueBinaryEncodingTests.cs ├── WebHostAdminInterfaceTestSetup.cs ├── WebServiceTests.cs ├── modeled-in-elm │ └── generate-json-coders │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ ├── CompilationInterface │ │ └── GenerateJsonConverters.elm │ │ ├── Main.elm │ │ ├── OpaqueChoiceType.elm │ │ └── Structures.elm ├── test-elm-apps │ ├── .gitignore │ ├── calculator-webapp │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ ├── ExposeFunctionsToAdmin.elm │ │ │ ├── Main.elm │ │ │ ├── MigrateState.elm │ │ │ └── State.elm │ │ │ ├── Calculator.elm │ │ │ ├── CompilationInterface │ │ │ └── GenerateJsonConverters.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── compilation-interface-multiple-source-dir │ │ ├── .gitignore │ │ ├── README.md │ │ ├── elm.json │ │ ├── other │ │ │ └── src-beta │ │ │ │ ├── CompilationInterface │ │ │ │ └── CustomNameBeta │ │ │ │ │ └── SourceFiles.elm │ │ │ │ └── file-under-beta.txt │ │ ├── src │ │ │ ├── Backend │ │ │ │ ├── Main.elm │ │ │ │ └── MigrateState.elm │ │ │ ├── CompilationInterface │ │ │ │ ├── CustomName │ │ │ │ │ └── SourceFiles.elm │ │ │ │ └── SourceFiles.elm │ │ │ ├── FileTree.elm │ │ │ └── Platform │ │ │ │ └── WebService.elm │ │ └── static-content │ │ │ ├── alpha │ │ │ ├── file-in-directory.txt │ │ │ └── second-file-in-directory.txt │ │ │ └── demo-file.mp3 │ ├── counter-webapp │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ ├── ExposeFunctionsToAdmin.elm │ │ │ ├── Main.elm │ │ │ └── MigrateState.elm │ │ │ ├── CompilationInterface │ │ │ └── GenerateJsonConverters.elm │ │ │ ├── HttpApi.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── cross-propagate-http-headers-to-and-from-body │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ └── Main.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── http-long-polling │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ └── Main.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── http-proxy │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ ├── HttpViaVolatileProcess.csx │ │ │ ├── HttpViaVolatileProcess.elm │ │ │ └── Main.elm │ │ │ ├── CompilationInterface │ │ │ └── SourceFiles.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── migrate-from-int-to-string-builder-web-app │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ ├── Main.elm │ │ │ └── MigrateState.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── read-source-file-webapp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── elm.json │ │ ├── src │ │ │ ├── Backend │ │ │ │ ├── Main.elm │ │ │ │ └── MigrateState.elm │ │ │ ├── CompilationInterface │ │ │ │ ├── CustomName │ │ │ │ │ └── SourceFiles.elm │ │ │ │ └── SourceFiles.elm │ │ │ ├── FileTree.elm │ │ │ └── Platform │ │ │ │ └── WebService.elm │ │ └── static-content │ │ │ ├── alpha │ │ │ ├── file-in-directory.txt │ │ │ └── second-file-in-directory.txt │ │ │ └── demo-file.mp3 │ ├── string-builder-webapp │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ └── Main.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── test-prevent-damage-by-migrate-webapp │ │ ├── .gitignore │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ ├── Main.elm │ │ │ ├── MigrateState.elm │ │ │ └── StateType.elm │ │ │ ├── CompilationInterface │ │ │ └── GenerateJsonConverters.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ ├── volatile-process-from-local-blob │ │ ├── .gitignore │ │ ├── assembly │ │ │ ├── assembly.csproj___renamed_to_avoid_error_in_dotnet_test │ │ │ ├── assembly.dll │ │ │ └── class.cs │ │ ├── elm-analyse.json │ │ ├── elm.json │ │ └── src │ │ │ ├── Backend │ │ │ ├── Main.elm │ │ │ └── VolatileProcess.csx │ │ │ ├── CompilationInterface │ │ │ └── SourceFiles.elm │ │ │ └── Platform │ │ │ └── WebService.elm │ └── volatile-process-native │ │ ├── .gitignore │ │ ├── elm-analyse.json │ │ ├── elm.json │ │ └── src │ │ ├── Backend │ │ └── Main.elm │ │ └── Platform │ │ └── WebService.elm └── test-elm-time.csproj ├── training-data └── elm-0.19.1 │ └── elm-make-report-json │ ├── elm-make-report-compile-error-type-mismatch-in-list.json │ └── elm-make-report-error-no-elm-json-file.json ├── vscode └── extension │ └── pine │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── LICENSE.txt │ ├── README.md │ ├── client │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── extension.ts │ │ └── test │ │ │ ├── completion.test.ts │ │ │ ├── diagnostics.test.ts │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ └── runTest.ts │ ├── testFixture │ │ ├── completion.txt │ │ └── diagnostics.txt │ └── tsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── scripts │ └── e2e.sh │ ├── src │ ├── language-configuration.json │ ├── pine-icon.png │ └── syntax.json │ └── tsconfig.json └── website └── pinevm ├── .gitignore ├── README.md ├── elm-analyse.json ├── elm.json ├── netlify-publish └── _redirects ├── src ├── Backend │ ├── Main.elm │ └── MigrateState.elm ├── Build.elm ├── CompilationInterface │ ├── ElmMake.elm │ └── SourceFiles.elm ├── FileTree.elm ├── Frontend │ ├── Main.elm │ ├── Page │ │ ├── Download.elm │ │ ├── Home.elm │ │ └── News.elm │ ├── PineLogo.elm │ ├── View.elm │ └── Visuals.elm ├── Netlify.elm └── Platform │ └── WebService.elm └── static-content ├── favicon.ico └── robots.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: [viir] 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | [Bb]in/ 2 | [Oo]bj/ 3 | 4 | .vs/ 5 | *.csproj.user 6 | -------------------------------------------------------------------------------- /explore/2020-02-02.memory-leak/demo-memory-leak/.gitignore: -------------------------------------------------------------------------------- 1 | /obj/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /explore/2020-02-02.memory-leak/demo-memory-leak/elm-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/.dockerignore: -------------------------------------------------------------------------------- 1 | **/obj/ 2 | **/bin/ 3 | **/elm-stuff/ 4 | **/.local-chromium 5 | **/.cache 6 | -------------------------------------------------------------------------------- /implement/Pine.Core/.gitignore: -------------------------------------------------------------------------------- 1 | prebuilt-artifact/ 2 | -------------------------------------------------------------------------------- /implement/example-apps/.gitignore: -------------------------------------------------------------------------------- 1 | **/elm-stuff/ 2 | **/live-test-artifacts/ 3 | -------------------------------------------------------------------------------- /implement/example-apps/elm-editor/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/example-apps/elm-editor/static/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | allow: / 3 | -------------------------------------------------------------------------------- /implement/pine/Elm/elm-compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/pine/Elm/learn-elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/pine/Gui/elm/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/.gitignore: -------------------------------------------------------------------------------- 1 | **/elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/case-of/steps/151/expected-value.txt: -------------------------------------------------------------------------------- 1 | { gamma = 79 } -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/case-of/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | [[7,13],[41,43,47]] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/conditional-expression/steps/10/expected-value.txt: -------------------------------------------------------------------------------- 1 | "condition is true" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/conditional-expression/steps/11/expected-value.txt: -------------------------------------------------------------------------------- 1 | "condition is false" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/declaration-syntax-after-space/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | test = 5678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/declaration-syntax-after-space/steps/101/expected-value.txt: -------------------------------------------------------------------------------- 1 | 5678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/declaration-syntax-after-space/steps/101/submission.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | "alpha" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | "beta" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | "literal in field" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/140/expected-value.txt: -------------------------------------------------------------------------------- 1 | [-103,-101,4] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/161/expected-value.txt: -------------------------------------------------------------------------------- 1 | [[[100]],[[103],[21,12]]] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/170/expected-value.txt: -------------------------------------------------------------------------------- 1 | 6789 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/171/expected-value.txt: -------------------------------------------------------------------------------- 1 | 5678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/180/expected-value.txt: -------------------------------------------------------------------------------- 1 | 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/181/expected-value.txt: -------------------------------------------------------------------------------- 1 | [[13,17],[23,21],[27,37]] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/301/expected-value.txt: -------------------------------------------------------------------------------- 1 | [13,11] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | [11,91,97,11] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/321/expected-value.txt: -------------------------------------------------------------------------------- 1 | [11,91,11] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/331/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["matched","not matched"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/351/expected-value.txt: -------------------------------------------------------------------------------- 1 | "abc-def-" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/361/expected-value.txt: -------------------------------------------------------------------------------- 1 | [43,41,71,73] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/deconstruct-pattern/steps/365/expected-value.txt: -------------------------------------------------------------------------------- 1 | [[43,41],[91,97]] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type-expose-tags/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type-expose-tags/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Alfa -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type-expose-tags/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Beta 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Alfa -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | AppModule.Variant_Alfa -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Beta 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | AppModule.Variant_Beta 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Gamma "hello" 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/112/submission.txt: -------------------------------------------------------------------------------- 1 | AppModule.Variant_Gamma "hello" 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/300/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Epsilon 11 13 "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/301/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Zeta 11 13 "test" 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/301/submission.txt: -------------------------------------------------------------------------------- 1 | AppModule.Variant_Zeta 11 13 "test" 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/308/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Gamma "testing gamma" 41 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-choice-type/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | Variant_Epsilon 27 29 "hello" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Array.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | Array.length [6, 7, 8, 9] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/112/submission.txt: -------------------------------------------------------------------------------- 1 | Array.isEmpty [ 3 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | [1,3,4] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | Array.fromList [ 1, 3, 4 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | [5,7] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | [7,7,7] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/130/submission.txt: -------------------------------------------------------------------------------- 1 | Array.repeat 3 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/140/expected-value.txt: -------------------------------------------------------------------------------- 1 | [3,7,1,13] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/140/submission.txt: -------------------------------------------------------------------------------- 1 | Array.append [ 3, 7 ] [ 1, 13 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/150/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/150/submission.txt: -------------------------------------------------------------------------------- 1 | Array.get -1 [ 123 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/151/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 234 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/151/submission.txt: -------------------------------------------------------------------------------- 1 | Array.get 0 [ 234 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/152/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/152/submission.txt: -------------------------------------------------------------------------------- 1 | Array.get 1 [ 345 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/160/expected-value.txt: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/160/submission.txt: -------------------------------------------------------------------------------- 1 | Array.set -1 7 [ 123 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/161/expected-value.txt: -------------------------------------------------------------------------------- 1 | [7] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/161/submission.txt: -------------------------------------------------------------------------------- 1 | Array.set 0 7 [ 123 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/162/expected-value.txt: -------------------------------------------------------------------------------- 1 | [876] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/162/submission.txt: -------------------------------------------------------------------------------- 1 | Array.set 1 7 [ 876 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/163/expected-value.txt: -------------------------------------------------------------------------------- 1 | [34,13,78] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/163/submission.txt: -------------------------------------------------------------------------------- 1 | Array.set 1 13 [ 34, 56, 78 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/301/expected-value.txt: -------------------------------------------------------------------------------- 1 | [0,1,2,3] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/301/submission.txt: -------------------------------------------------------------------------------- 1 | Array.initialize 4 identity -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/303/expected-value.txt: -------------------------------------------------------------------------------- 1 | [0,1,4,9] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-array/steps/303/submission.txt: -------------------------------------------------------------------------------- 1 | Array.initialize 4 (\n -> n*n) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | String.length <| "pipe to the left" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | "pipe to the right" |> String.length -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | [19,19] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/113/expected-value.txt: -------------------------------------------------------------------------------- 1 | [20,20] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | 0 < 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/121/submission.txt: -------------------------------------------------------------------------------- 1 | 0 > 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/122/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/122/submission.txt: -------------------------------------------------------------------------------- 1 | 0 < 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/123/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/123/submission.txt: -------------------------------------------------------------------------------- 1 | 1 > 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/130/submission.txt: -------------------------------------------------------------------------------- 1 | 0 <= 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/131/submission.txt: -------------------------------------------------------------------------------- 1 | 0 >= 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/132/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/132/submission.txt: -------------------------------------------------------------------------------- 1 | 1 <= 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/133/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/133/submission.txt: -------------------------------------------------------------------------------- 1 | 0 >= 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/143/expected-value.txt: -------------------------------------------------------------------------------- 1 | LT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/143/submission.txt: -------------------------------------------------------------------------------- 1 | LT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/144/expected-value.txt: -------------------------------------------------------------------------------- 1 | EQ -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/144/submission.txt: -------------------------------------------------------------------------------- 1 | EQ -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/145/expected-value.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/145/submission.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/150/expected-value.txt: -------------------------------------------------------------------------------- 1 | EQ -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/150/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare 0 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/151/expected-value.txt: -------------------------------------------------------------------------------- 1 | LT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/151/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare 3 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/152/expected-value.txt: -------------------------------------------------------------------------------- 1 | EQ -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/152/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare 4 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/153/expected-value.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/153/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare 5 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/154/expected-value.txt: -------------------------------------------------------------------------------- 1 | LT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/154/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare [ 13, 17 ] [ 13, 21 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/155/expected-value.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/155/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare [ 17, 17 ] [ 13, 21 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/156/expected-value.txt: -------------------------------------------------------------------------------- 1 | LT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/156/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare "hello" "world" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/157/expected-value.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/157/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare "hello" "elm" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/158/expected-value.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/158/submission.txt: -------------------------------------------------------------------------------- 1 | compare 43 11 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/180/expected-value.txt: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/180/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.min 42 12345678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/181/expected-value.txt: -------------------------------------------------------------------------------- 1 | 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/181/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.min 42 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/185/expected-value.txt: -------------------------------------------------------------------------------- 1 | 71 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/185/submission.txt: -------------------------------------------------------------------------------- 1 | min 91 71 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/190/expected-value.txt: -------------------------------------------------------------------------------- 1 | 12345678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/190/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.max 42 12345678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/191/expected-value.txt: -------------------------------------------------------------------------------- 1 | 57 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/191/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.max 57 51 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/195/expected-value.txt: -------------------------------------------------------------------------------- 1 | 87 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/195/submission.txt: -------------------------------------------------------------------------------- 1 | max 87 73 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/400/expected-value.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/400/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.modBy 13 29 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/402/expected-value.txt: -------------------------------------------------------------------------------- 1 | [3,0,1,2,3,0,1,2,3,0,1] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/405/expected-value.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/405/submission.txt: -------------------------------------------------------------------------------- 1 | modBy 7 13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/410/expected-value.txt: -------------------------------------------------------------------------------- 1 | -6 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/410/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.remainderBy 7 -13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/412/expected-value.txt: -------------------------------------------------------------------------------- 1 | [-1,0,-3,-2,-1,0,1,2,3,0,1] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/415/expected-value.txt: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/415/submission.txt: -------------------------------------------------------------------------------- 1 | remainderBy 5 -21 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/420/expected-value.txt: -------------------------------------------------------------------------------- 1 | -17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/420/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.negate 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/425/expected-value.txt: -------------------------------------------------------------------------------- 1 | -23 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/425/submission.txt: -------------------------------------------------------------------------------- 1 | negate 23 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/430/expected-value.txt: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/430/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.abs -13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/431/expected-value.txt: -------------------------------------------------------------------------------- 1 | 23 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/431/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.abs 23 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/435/expected-value.txt: -------------------------------------------------------------------------------- 1 | 27 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/435/submission.txt: -------------------------------------------------------------------------------- 1 | abs -27 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/440/expected-value.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/440/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.clamp 3 5 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/441/expected-value.txt: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/441/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.clamp 11 17 13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/442/expected-value.txt: -------------------------------------------------------------------------------- 1 | 19 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/442/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.clamp 19 27 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/445/expected-value.txt: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/445/submission.txt: -------------------------------------------------------------------------------- 1 | clamp 31 37 39 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/710/expected-value.txt: -------------------------------------------------------------------------------- 1 | LT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/711/expected-value.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/715/expected-value.txt: -------------------------------------------------------------------------------- 1 | LT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/715/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare "Alfa" "alfa" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/716/expected-value.txt: -------------------------------------------------------------------------------- 1 | GT -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/716/submission.txt: -------------------------------------------------------------------------------- 1 | Basics.compare "beta" "Beta" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/750/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/750/submission.txt: -------------------------------------------------------------------------------- 1 | "azzurreggiare" < "azzurro" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/751/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/751/submission.txt: -------------------------------------------------------------------------------- 1 | "azzurreggiare" > "azzurro" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/815/expected-value.txt: -------------------------------------------------------------------------------- 1 | [43,41,47,7,13] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-basics/steps/815/submission.txt: -------------------------------------------------------------------------------- 1 | 43 :: 41 :: 47 :: [ 7, 13 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.and 0 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/113/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1234 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/113/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.and 1234 1234 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/114/expected-value.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/114/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.and 255 11 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/115/expected-value.txt: -------------------------------------------------------------------------------- 1 | 13090 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/115/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.and 46903 15274 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | 29 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/121/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.or 13 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/122/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1117 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/122/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.or 1117 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/123/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1343 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/123/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.or 1341 51 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/129/expected-value.txt: -------------------------------------------------------------------------------- 1 | 479001599 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/129/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.or 0 0x11C8CFBFF -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/131/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.xor 41 47 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/133/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1294 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/133/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.xor 1341 51 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/310/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 0 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/311/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 1 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/313/expected-value.txt: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/313/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 4 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/314/expected-value.txt: -------------------------------------------------------------------------------- 1 | 48 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/314/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 4 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/321/expected-value.txt: -------------------------------------------------------------------------------- 1 | -6 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/321/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 1 -3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/330/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/330/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftRightBy 0 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/332/expected-value.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/332/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftRightBy 1 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/334/expected-value.txt: -------------------------------------------------------------------------------- 1 | 354 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/334/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 1 177 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/335/expected-value.txt: -------------------------------------------------------------------------------- 1 | 256 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/335/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 8 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/336/expected-value.txt: -------------------------------------------------------------------------------- 1 | 130560 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/336/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 9 255 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/339/expected-value.txt: -------------------------------------------------------------------------------- 1 | 814383232 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/339/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftLeftBy 7 39916801 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/360/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/360/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftRightZfBy 0 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/361/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2898375356 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/371/expected-value.txt: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/371/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftRightZfBy 1 32 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/376/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2147483632 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-bitwise/steps/376/submission.txt: -------------------------------------------------------------------------------- 1 | Bitwise.shiftRightZfBy 1 -32 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | 32 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Char.toCode ' ' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | 8364 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | Char.toCode '€' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/113/expected-value.txt: -------------------------------------------------------------------------------- 1 | 128515 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/113/submission.txt: -------------------------------------------------------------------------------- 1 | Char.toCode '😃' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/114/expected-value.txt: -------------------------------------------------------------------------------- 1 | 127794 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/114/submission.txt: -------------------------------------------------------------------------------- 1 | Char.toCode '🌲' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | '*' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | Char.fromCode 42 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | '₭' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/121/submission.txt: -------------------------------------------------------------------------------- 1 | Char.fromCode 8365 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/123/expected-value.txt: -------------------------------------------------------------------------------- 1 | '😄' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/123/submission.txt: -------------------------------------------------------------------------------- 1 | Char.fromCode 128516 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/130/submission.txt: -------------------------------------------------------------------------------- 1 | Char.isDigit '0' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/133/expected-value.txt: -------------------------------------------------------------------------------- 1 | [False,True,True,True,False,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/140/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/140/submission.txt: -------------------------------------------------------------------------------- 1 | Char.isHexDigit '0' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/170/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/170/submission.txt: -------------------------------------------------------------------------------- 1 | Char.isAlphaNum ' ' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/221/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/221/submission.txt: -------------------------------------------------------------------------------- 1 | Char.isLower 'a' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/222/expected-value.txt: -------------------------------------------------------------------------------- 1 | [False,True,True,False,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/231/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/231/submission.txt: -------------------------------------------------------------------------------- 1 | Char.isUpper 'C' -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-char/steps/232/expected-value.txt: -------------------------------------------------------------------------------- 1 | [False,False,False,True,True,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-debug/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | "payload" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-debug/steps/210/submission.txt: -------------------------------------------------------------------------------- 1 | Debug.toString [ 11, 13, 17, 19 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Dict.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | Dict.isEmpty Dict.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/112/submission.txt: -------------------------------------------------------------------------------- 1 | Dict.size Dict.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/113/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/113/submission.txt: -------------------------------------------------------------------------------- 1 | Dict.get 11 Dict.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.fromList [(13,17)] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | Dict.insert 13 17 Dict.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.fromList [(13,17),(21,23)] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/122/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.fromList [(21,23),(31,11)] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/123/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.fromList [(21,23),(31,71)] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 11 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/160/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.fromList [(37,41)] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/160/submission.txt: -------------------------------------------------------------------------------- 1 | Dict.singleton 37 41 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/180/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.fromList [(13,21),(17,23)] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/190/expected-value.txt: -------------------------------------------------------------------------------- 1 | Dict.fromList [(19,27)] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/300/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/301/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/303/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-dict/steps/333/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/0/expected-value.txt: -------------------------------------------------------------------------------- 1 | "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/0/submission.txt: -------------------------------------------------------------------------------- 1 | identity "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/1/expected-value.txt: -------------------------------------------------------------------------------- 1 | "apple" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/1/submission.txt: -------------------------------------------------------------------------------- 1 | always "apple" "banana" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/2/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/2/submission.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/3/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "literal" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/3/submission.txt: -------------------------------------------------------------------------------- 1 | Just "literal" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-global-exposing/steps/4/expected-value.txt: -------------------------------------------------------------------------------- 1 | [False,True] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | "cba_init_" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | "abc_init_" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["c","b","a"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/112/submission.txt: -------------------------------------------------------------------------------- 1 | List.reverse [ "a", "b", "c" ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/113/expected-value.txt: -------------------------------------------------------------------------------- 1 | [False,True,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/114/expected-value.txt: -------------------------------------------------------------------------------- 1 | [True,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/115/expected-value.txt: -------------------------------------------------------------------------------- 1 | [Nothing,Just "a"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/116/expected-value.txt: -------------------------------------------------------------------------------- 1 | [Nothing,Just [],Just ["beta"]] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/117/expected-value.txt: -------------------------------------------------------------------------------- 1 | [[],[],["alpha"],["alpha","beta"]] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/119/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["hello world"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["alpha"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | List.singleton "alpha" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["text","text","text"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/121/submission.txt: -------------------------------------------------------------------------------- 1 | List.repeat 3 "text" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/122/expected-value.txt: -------------------------------------------------------------------------------- 1 | [[0],[0,1,2,3],[-2,-1,0,1,2]] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/230/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/231/expected-value.txt: -------------------------------------------------------------------------------- 1 | [(0,"Tom"),(1,"Sue"),(2,"Bob")] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/243/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/244/expected-value.txt: -------------------------------------------------------------------------------- 1 | [11,41,13,41] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/250/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/250/submission.txt: -------------------------------------------------------------------------------- 1 | List.map2 Tuple.pair [] [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/251/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/251/submission.txt: -------------------------------------------------------------------------------- 1 | List.map2 Tuple.pair [ 11 ] [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/254/expected-value.txt: -------------------------------------------------------------------------------- 1 | [(11,"hello"),(13,"world")] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/263/expected-value.txt: -------------------------------------------------------------------------------- 1 | [3,12] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/270/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/270/submission.txt: -------------------------------------------------------------------------------- 1 | List.intersperse "test" [ ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/301/expected-value.txt: -------------------------------------------------------------------------------- 1 | [11,13] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/302/expected-value.txt: -------------------------------------------------------------------------------- 1 | [17,19] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/333/expected-value.txt: -------------------------------------------------------------------------------- 1 | [True,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/502/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/502/submission.txt: -------------------------------------------------------------------------------- 1 | List.minimum [ 31, 17, 41, 37 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/512/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 41 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/512/submission.txt: -------------------------------------------------------------------------------- 1 | List.maximum [ 31, 17, 41, 37 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/532/expected-value.txt: -------------------------------------------------------------------------------- 1 | 41 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/532/submission.txt: -------------------------------------------------------------------------------- 1 | List.sum [ 11, 13, 17 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/600/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/600/submission.txt: -------------------------------------------------------------------------------- 1 | List.sort [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/601/expected-value.txt: -------------------------------------------------------------------------------- 1 | [7] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/601/submission.txt: -------------------------------------------------------------------------------- 1 | List.sort [ 7 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/603/expected-value.txt: -------------------------------------------------------------------------------- 1 | [1,3,7,9] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/603/submission.txt: -------------------------------------------------------------------------------- 1 | List.sort [ 7, 3, 9, 1 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/605/expected-value.txt: -------------------------------------------------------------------------------- 1 | [1,3,7,9] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/605/submission.txt: -------------------------------------------------------------------------------- 1 | List.sort [ 7, 3, 9, 1 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/607/expected-value.txt: -------------------------------------------------------------------------------- 1 | [-11,-5,17,23] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/607/submission.txt: -------------------------------------------------------------------------------- 1 | List.sort [ 17, -5, 23, -11 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/631/expected-value.txt: -------------------------------------------------------------------------------- 1 | [-19,-7,5,11] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/631/submission.txt: -------------------------------------------------------------------------------- 1 | List.sortBy identity [ 11, -7, 5, -19 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-list/steps/633/expected-value.txt: -------------------------------------------------------------------------------- 1 | [(1,["c"]),(0,["a","b"])] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | Maybe.Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/101/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "literal" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/101/submission.txt: -------------------------------------------------------------------------------- 1 | Maybe.Just "literal" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/102/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["alpha","beta"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/103/expected-value.txt: -------------------------------------------------------------------------------- 1 | [Nothing,Just "hello world"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/104/expected-value.txt: -------------------------------------------------------------------------------- 1 | [Nothing,Just "beta",Just "alpha"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-maybe/steps/131/submission.txt: -------------------------------------------------------------------------------- 1 | Maybe.map2 (+) (Just 1) (Just 3) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | Err "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | Result.Err "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/105/expected-value.txt: -------------------------------------------------------------------------------- 1 | Err "error text" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/105/submission.txt: -------------------------------------------------------------------------------- 1 | Err "error text" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 31 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Result.Ok 31 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/115/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 37 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/115/submission.txt: -------------------------------------------------------------------------------- 1 | Ok 37 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | 79 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok ["hello","world"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/200/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok ["hello","world"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/210/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok "hello" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/211/expected-value.txt: -------------------------------------------------------------------------------- 1 | Err ["prefix","alfa"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/220/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/221/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "success text" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-result/steps/230/expected-value.txt: -------------------------------------------------------------------------------- 1 | [Ok "alfa",Err "error text"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Set.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Set.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | Set.isEmpty Set.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/112/submission.txt: -------------------------------------------------------------------------------- 1 | Set.size Set.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/113/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/113/submission.txt: -------------------------------------------------------------------------------- 1 | Set.member 11 Set.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | Set.fromList [13] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | Set.insert 13 Set.empty -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | Set.fromList [13,21] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/121/submission.txt: -------------------------------------------------------------------------------- 1 | Set.insert 21 (Set.insert 13 Set.empty) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/122/expected-value.txt: -------------------------------------------------------------------------------- 1 | Set.fromList [21,31] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/122/submission.txt: -------------------------------------------------------------------------------- 1 | Set.insert 21 (Set.insert 31 Set.empty) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/140/expected-value.txt: -------------------------------------------------------------------------------- 1 | Set.fromList [11,31,41] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/160/expected-value.txt: -------------------------------------------------------------------------------- 1 | Set.fromList [37] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/160/submission.txt: -------------------------------------------------------------------------------- 1 | Set.singleton 37 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/170/expected-value.txt: -------------------------------------------------------------------------------- 1 | Set.fromList [13,17,19,21] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/303/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-set/steps/333/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | ['h','e','l','l','o'] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | String.toList "hello" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/101/expected-value.txt: -------------------------------------------------------------------------------- 1 | "world" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | [True,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | [0,4,1] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | "desserts" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/112/submission.txt: -------------------------------------------------------------------------------- 1 | String.reverse "stressed" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/113/expected-value.txt: -------------------------------------------------------------------------------- 1 | "hahaha" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/113/submission.txt: -------------------------------------------------------------------------------- 1 | String.repeat 3 "ha" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/114/expected-value.txt: -------------------------------------------------------------------------------- 1 | "a/b /c/d/e" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/114/submission.txt: -------------------------------------------------------------------------------- 1 | String.replace "," "/" "a,b ,c/d,e" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/115/expected-value.txt: -------------------------------------------------------------------------------- 1 | "butterfly" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/115/submission.txt: -------------------------------------------------------------------------------- 1 | String.append "butter" "fly" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/116/expected-value.txt: -------------------------------------------------------------------------------- 1 | "nevertheless" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/118/expected-value.txt: -------------------------------------------------------------------------------- 1 | "Hawaiian" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/118/submission.txt: -------------------------------------------------------------------------------- 1 | String.join "a" ["H","w","ii","n"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | "Mu" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | String.left 2 "Mulder" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | "ly" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/121/submission.txt: -------------------------------------------------------------------------------- 1 | String.right 2 "Scully" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/122/expected-value.txt: -------------------------------------------------------------------------------- 1 | "e Lone Gunmen" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/123/expected-value.txt: -------------------------------------------------------------------------------- 1 | "Cigarette Smoking M" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | [True,False,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | [True,False] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/132/expected-value.txt: -------------------------------------------------------------------------------- 1 | [False,True] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/300/expected-value.txt: -------------------------------------------------------------------------------- 1 | "T" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/300/submission.txt: -------------------------------------------------------------------------------- 1 | String.cons 'T' "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/301/expected-value.txt: -------------------------------------------------------------------------------- 1 | "a test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/301/submission.txt: -------------------------------------------------------------------------------- 1 | String.cons 'a' " test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/310/submission.txt: -------------------------------------------------------------------------------- 1 | String.uncons "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just ('t',"est") -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/311/submission.txt: -------------------------------------------------------------------------------- 1 | String.uncons "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/341/expected-value.txt: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/341/submission.txt: -------------------------------------------------------------------------------- 1 | String.trimLeft " " -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/343/expected-value.txt: -------------------------------------------------------------------------------- 1 | "testing 11 " -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/351/expected-value.txt: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/351/submission.txt: -------------------------------------------------------------------------------- 1 | String.trimRight " " -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/353/expected-value.txt: -------------------------------------------------------------------------------- 1 | " testing 13" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/363/expected-value.txt: -------------------------------------------------------------------------------- 1 | "testing 31" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/363/submission.txt: -------------------------------------------------------------------------------- 1 | String.trim " testing 31 " -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/371/expected-value.txt: -------------------------------------------------------------------------------- 1 | "emitinit" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/381/expected-value.txt: -------------------------------------------------------------------------------- 1 | "a.b.c" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/510/expected-value.txt: -------------------------------------------------------------------------------- 1 | "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/510/submission.txt: -------------------------------------------------------------------------------- 1 | String.padLeft 3 '-' "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/511/expected-value.txt: -------------------------------------------------------------------------------- 1 | "---test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/511/submission.txt: -------------------------------------------------------------------------------- 1 | String.padLeft 7 '-' "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/571/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["alfa","beta"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/571/submission.txt: -------------------------------------------------------------------------------- 1 | String.lines "alfa\nbeta" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/572/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["alfa","beta"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/572/submission.txt: -------------------------------------------------------------------------------- 1 | String.lines "alfa\rbeta" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/573/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["alfa","beta"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/573/submission.txt: -------------------------------------------------------------------------------- 1 | String.lines "alfa\r\nbeta" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/583/expected-value.txt: -------------------------------------------------------------------------------- 1 | ["How","are","you?","Good?"] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/591/expected-value.txt: -------------------------------------------------------------------------------- 1 | [1,4,7,10] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/592/expected-value.txt: -------------------------------------------------------------------------------- 1 | [2,5] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/593/expected-value.txt: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/721/expected-value.txt: -------------------------------------------------------------------------------- 1 | "testing alfa" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/721/submission.txt: -------------------------------------------------------------------------------- 1 | String.toLower "testing Alfa" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/731/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/731/submission.txt: -------------------------------------------------------------------------------- 1 | String.any Char.isDigit "90210" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/732/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/732/submission.txt: -------------------------------------------------------------------------------- 1 | String.any Char.isDigit "R2-D2" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/733/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/733/submission.txt: -------------------------------------------------------------------------------- 1 | String.any Char.isDigit "heart" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/810/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/810/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/813/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/813/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "0" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/814/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0.3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/814/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "0.3" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/815/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 1.7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/815/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "1.7" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/816/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0.013 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/816/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "0.013" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/817/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0.0041 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/817/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "0.0041" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/821/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -0.5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/821/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "-0.5" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/830/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/830/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "0." -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/831/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/831/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "1." -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/832/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/832/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "-1." -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/840/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/840/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "." -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/841/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/841/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat ".0" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/842/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/842/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "-.0" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/843/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0.1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/843/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat ".1" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/845/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -0.1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/845/submission.txt: -------------------------------------------------------------------------------- 1 | String.toFloat "-.1" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/862/expected-value.txt: -------------------------------------------------------------------------------- 1 | "123" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/862/submission.txt: -------------------------------------------------------------------------------- 1 | String.fromFloat 123 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/863/expected-value.txt: -------------------------------------------------------------------------------- 1 | "-42" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/863/submission.txt: -------------------------------------------------------------------------------- 1 | String.fromFloat -42 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/865/expected-value.txt: -------------------------------------------------------------------------------- 1 | "3.9" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/865/submission.txt: -------------------------------------------------------------------------------- 1 | String.fromFloat 3.9 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/866/expected-value.txt: -------------------------------------------------------------------------------- 1 | "1.07" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/866/submission.txt: -------------------------------------------------------------------------------- 1 | String.fromFloat 1.07 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/867/expected-value.txt: -------------------------------------------------------------------------------- 1 | "0.3" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/867/submission.txt: -------------------------------------------------------------------------------- 1 | String.fromFloat 0.3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/868/expected-value.txt: -------------------------------------------------------------------------------- 1 | "-0.7" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-string/steps/868/submission.txt: -------------------------------------------------------------------------------- 1 | String.fromFloat (-1 * 0.7) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-tuple/steps/0/expected-value.txt: -------------------------------------------------------------------------------- 1 | "alpha" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-tuple/steps/0/submission.txt: -------------------------------------------------------------------------------- 1 | Tuple.first ( "alpha", "beta" ) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-tuple/steps/1/expected-value.txt: -------------------------------------------------------------------------------- 1 | "delta" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-core-tuple/steps/1/submission.txt: -------------------------------------------------------------------------------- 1 | Tuple.second ( "gamma", "delta" ) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/disabled-steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | -1.5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/disabled-steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | -1.5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | 0.0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/101/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/101/submission.txt: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/102/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/102/submission.txt: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/150/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/150/submission.txt: -------------------------------------------------------------------------------- 1 | 0.0 == 0.0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/151/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/151/submission.txt: -------------------------------------------------------------------------------- 1 | 0 == 0.0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/152/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-float/steps/152/submission.txt: -------------------------------------------------------------------------------- 1 | 0.0 == 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record-alias/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record-alias/steps/133/submission.txt: -------------------------------------------------------------------------------- 1 | applied_first 47 49 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | { a = 123 }.a -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | 41 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | { a = 123, b = 41, c = 47 }.b -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | { alpha = 17, beta = 13 } -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | { beta = 13, alpha = 17 } -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/300/submission.txt: -------------------------------------------------------------------------------- 1 | getAlfa = .alfa -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/301/submission.txt: -------------------------------------------------------------------------------- 1 | getBeta = .beta -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | 31 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | 39 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/320/expected-value.txt: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/elm-syntax-record/steps/321/expected-value.txt: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/1/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/1/submission.txt: -------------------------------------------------------------------------------- 1 | fibonacci 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/2/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/2/submission.txt: -------------------------------------------------------------------------------- 1 | fibonacci 2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/3/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/3/submission.txt: -------------------------------------------------------------------------------- 1 | fibonacci 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/4/expected-value.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/4/submission.txt: -------------------------------------------------------------------------------- 1 | fibonacci 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/5/expected-value.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/5/submission.txt: -------------------------------------------------------------------------------- 1 | fibonacci 5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/6/expected-value.txt: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/6/submission.txt: -------------------------------------------------------------------------------- 1 | fibonacci 6 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/fibonacci/steps/combine-10-11-12/expected-value.txt: -------------------------------------------------------------------------------- 1 | [55,89,144] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/104/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2047 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/104/submission.txt: -------------------------------------------------------------------------------- 1 | 2047 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | 6912 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | 1234 + 5678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | 15 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/120/submission.txt: -------------------------------------------------------------------------------- 1 | 3 * 5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/130/submission.txt: -------------------------------------------------------------------------------- 1 | 21 // 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/131/submission.txt: -------------------------------------------------------------------------------- 1 | 3 // 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/140/expected-value.txt: -------------------------------------------------------------------------------- 1 | 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/140/submission.txt: -------------------------------------------------------------------------------- 1 | 4 + 4 * 3 + 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/150/expected-value.txt: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/150/submission.txt: -------------------------------------------------------------------------------- 1 | (1 + 2) * (3 + 1) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/160/expected-value.txt: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/160/submission.txt: -------------------------------------------------------------------------------- 1 | 20 * 20 // 30 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/170/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1568399144144471 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/170/submission.txt: -------------------------------------------------------------------------------- 1 | 1087 * 1091 * 1093 * 1097 * 1103 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/210/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/210/submission.txt: -------------------------------------------------------------------------------- 1 | 3 ^ 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/211/expected-value.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/211/submission.txt: -------------------------------------------------------------------------------- 1 | 3 ^ 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/213/expected-value.txt: -------------------------------------------------------------------------------- 1 | 81 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/213/submission.txt: -------------------------------------------------------------------------------- 1 | 3 ^ 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/214/expected-value.txt: -------------------------------------------------------------------------------- 1 | 64 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/integer/steps/214/submission.txt: -------------------------------------------------------------------------------- 1 | 4 ^ 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/interactive-submission-syntax/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | { test = 123 } -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/interactive-submission-syntax/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | alfa = 123 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/interactive-submission-syntax/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/interactive-submission-syntax/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | alfa == 123 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/interactive-submission-syntax/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/let-block/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | [19,17] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/let-block/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | [23,21] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/literals/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/literals/steps/100/submission.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/literals/steps/101/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/literals/steps/101/submission.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/literals/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | [65536] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/literals/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | [65536] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/mutual-recursion/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | [4,2] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/operator-application/steps/173/expected-value.txt: -------------------------------------------------------------------------------- 1 | [False,True,True] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/partial-application/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/partial-application/steps/141/expected-value.txt: -------------------------------------------------------------------------------- 1 | [11,71,11,41,71] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/partial-application/steps/151/expected-value.txt: -------------------------------------------------------------------------------- 1 | [11,13,11,17,13] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel-bitwise/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel-bitwise/steps/123/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel-bitwise/steps/124/expected-value.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel-bitwise/steps/141/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel-bitwise/steps/321/expected-value.txt: -------------------------------------------------------------------------------- 1 | 158 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel-bitwise/steps/341/expected-value.txt: -------------------------------------------------------------------------------- 1 | -35 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel-bitwise/steps/342/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-100/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-100/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-110/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-110/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal [ 0 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-111/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-111/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal [ 123 ] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-120/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-121/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-122/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-125/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-127/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-130/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-131/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/equal-list-132/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-110/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-110/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-111/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-111/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal 2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-112/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-112/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-113/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-113/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal 5 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-122/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-122/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal -2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-123/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-123/submission.txt: -------------------------------------------------------------------------------- 1 | Pine_kernel.equal -3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-210/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-211/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-212/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-220/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/int-blob-equal-221/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/sort-int-00/expected-value.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/pine-kernel/steps/sort-int-01/expected-value.txt: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/read-source-file/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/read-source-file/context-app/a-file.txt: -------------------------------------------------------------------------------- 1 | Text file content ✔️ -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/read-source-file/steps/10/expected-value.txt: -------------------------------------------------------------------------------- 1 | "Text file content ✔️" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/read-source-file/steps/20/expected-value.txt: -------------------------------------------------------------------------------- 1 | "Text file content 0 ✔️" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/record-type-alias-constructor/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/record-type-alias-constructor/steps/101/expected-value.txt: -------------------------------------------------------------------------------- 1 | { alfa = 47 } -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/use-declaration-from-context/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/use-declaration-from-context/steps/0/expected-value.txt: -------------------------------------------------------------------------------- 1 | "literal ✔️" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/use-declaration-from-previous-submission/steps/41/expected-value.txt: -------------------------------------------------------------------------------- 1 | 4567 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/use-declaration-from-previous-submission/steps/41/submission.txt: -------------------------------------------------------------------------------- 1 | fib 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/use-declaration-from-previous-submission/steps/43/expected-value.txt: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-core/use-declaration-from-previous-submission/steps/43/submission.txt: -------------------------------------------------------------------------------- 1 | fib 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/.gitignore: -------------------------------------------------------------------------------- 1 | **/elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | <1 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/210/expected-value.txt: -------------------------------------------------------------------------------- 1 | <0 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/211/expected-value.txt: -------------------------------------------------------------------------------- 1 | <1 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/212/expected-value.txt: -------------------------------------------------------------------------------- 1 | <2 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/221/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 113 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/231/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/233/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -15 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/251/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 10539 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/252/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 11049 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/254/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 51183 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/261/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 191 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/262/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/264/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/271/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 255 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/272/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 251 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/273/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 172 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/274/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -49 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/275/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -7867 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/276/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 57663 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/277/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -14353 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/278/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -14353 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/281/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 193 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/282/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/284/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/291/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just -17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/292/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 251 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/293/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just 227 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | <0 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | <11 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/334/expected-value.txt: -------------------------------------------------------------------------------- 1 | <4 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/340/expected-value.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/340/submission.txt: -------------------------------------------------------------------------------- 1 | Bytes.Encode.getStringWidth "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/344/expected-value.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/344/submission.txt: -------------------------------------------------------------------------------- 1 | Bytes.Encode.getStringWidth "🌲" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/412/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just [116,101,115,116] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/413/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/414/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just [195,164] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/416/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just [240,159,140,178] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/431/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "(" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/432/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "testing" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/434/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "Ä" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/437/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "🌲" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/451/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-bytes/steps/521/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just [48,57] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 678 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok True -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok False -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/123/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok -11 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/124/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok " " -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/132/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok "hello world" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/140/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/141/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok [11,13,17] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/151/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 41 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/153/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 47 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/160/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/161/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (Just 81) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/171/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 7 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/181/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 73 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/191/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 91 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/300/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok NullValue -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/360/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (ArrayValue []) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/373/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (ArrayValue []) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/400/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (ObjectValue []) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/401/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (ObjectValue []) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/402/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (ObjectValue []) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-decode/steps/451/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (StringValue "") -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/100/expected-value.txt: -------------------------------------------------------------------------------- 1 | "null" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | "true" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | "false" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/120/expected-value.txt: -------------------------------------------------------------------------------- 1 | "0" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/121/expected-value.txt: -------------------------------------------------------------------------------- 1 | "678" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/122/expected-value.txt: -------------------------------------------------------------------------------- 1 | "-87" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | "\"\"" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | "\"\\\\\"" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/140/expected-value.txt: -------------------------------------------------------------------------------- 1 | "{}" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/150/expected-value.txt: -------------------------------------------------------------------------------- 1 | "[]" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/152/expected-value.txt: -------------------------------------------------------------------------------- 1 | "[456,true]" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/160/expected-value.txt: -------------------------------------------------------------------------------- 1 | "[]" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/161/expected-value.txt: -------------------------------------------------------------------------------- 1 | "[31,41]" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/801/expected-value.txt: -------------------------------------------------------------------------------- 1 | "0" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-json-encode/steps/802/expected-value.txt: -------------------------------------------------------------------------------- 1 | "0.1" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/315/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 731 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/331/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/341/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/343/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/344/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 17 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/351/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/420/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/421/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-advanced/steps/423/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok -615 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | [4,0,4] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | [10,0,10] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/312/expected-value.txt: -------------------------------------------------------------------------------- 1 | [-1,0,0] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/321/expected-value.txt: -------------------------------------------------------------------------------- 1 | [8,0,8] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/410/expected-value.txt: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/411/expected-value.txt: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/412/expected-value.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/413/expected-value.txt: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/414/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser-kernel/steps/415/expected-value.txt: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok "test" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/310/submission.txt: -------------------------------------------------------------------------------- 1 | Parser.run Parser.int "0" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/311/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/311/submission.txt: -------------------------------------------------------------------------------- 1 | Parser.run Parser.int "1" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/315/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 731 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/321/submission.txt: -------------------------------------------------------------------------------- 1 | Parser.run Parser.int ":" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/331/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/332/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/333/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 10 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/337/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 15 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/343/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 10 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/360/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 2027 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/361/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 2029 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/420/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/421/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok -1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/423/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok -179 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/611/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok MyTrue -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/613/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok (MyOr MyTrue MyFalse) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/810/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/811/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/816/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 71 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/820/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/821/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 1 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/825/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 1.07 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/833/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 83.13 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-parser/steps/841/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok 0.41 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentEncode "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/111/expected-value.txt: -------------------------------------------------------------------------------- 1 | "hat" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/111/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentEncode "hat" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/115/expected-value.txt: -------------------------------------------------------------------------------- 1 | "to%20be" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/115/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentEncode "to be" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/116/expected-value.txt: -------------------------------------------------------------------------------- 1 | "99%25" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/116/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentEncode "99%" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/130/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/130/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/131/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "hat" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/131/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "hat" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/135/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "to be" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/135/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "to%20be" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/136/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "99%" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/136/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "99%25" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/137/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "$" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/137/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "%24" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/138/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "¢" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/138/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "%C2%A2" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/139/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "€" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/139/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "%E2%82%AC" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/141/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/141/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "%" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/142/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/142/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "%XY" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/143/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/143/submission.txt: -------------------------------------------------------------------------------- 1 | Url.percentDecode "%C2" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/303/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "path" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/331/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/333/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just (EntryRoute Nothing) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/335/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just (EntryRoute (Just 1)) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/elm-kernel-url/steps/337/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just (EntryRoute (Just 0)) -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Base64.fromString "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/112/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "VGVzdGluZw==" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/112/submission.txt: -------------------------------------------------------------------------------- 1 | Base64.fromString "Testing" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/114/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "8J+Msg==" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/114/submission.txt: -------------------------------------------------------------------------------- 1 | Base64.fromString "🌲" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/141/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "Arancinu" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/141/submission.txt: -------------------------------------------------------------------------------- 1 | Base64.toString "QXJhbmNpbnU=" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/144/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "🌲" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-base64/steps/144/submission.txt: -------------------------------------------------------------------------------- 1 | Base64.toString "8J+Msg==" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-sha/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-sha/steps/510/expected-value.txt: -------------------------------------------------------------------------------- 1 | "00000000" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-sha/steps/510/submission.txt: -------------------------------------------------------------------------------- 1 | SHA256.wordToHex 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-sha/steps/511/expected-value.txt: -------------------------------------------------------------------------------- 1 | "0012d687" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-sha/steps/511/submission.txt: -------------------------------------------------------------------------------- 1 | SHA256.wordToHex 1234567 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-kernel/lib-sha/steps/530/submission.txt: -------------------------------------------------------------------------------- 1 | SHA256.toHex (SHA256.fromString "") -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/110/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/110/submission.txt: -------------------------------------------------------------------------------- 1 | Base64.fromString "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/114/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "8J+Msg==" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/141/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "Arancinu" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/144/expected-value.txt: -------------------------------------------------------------------------------- 1 | Just "🌲" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/151/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/152/expected-value.txt: -------------------------------------------------------------------------------- 1 | Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/210/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2166136261 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/210/submission.txt: -------------------------------------------------------------------------------- 1 | FNV1a.hash "" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/211/expected-value.txt: -------------------------------------------------------------------------------- 1 | 2898375356 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/310/expected-value.txt: -------------------------------------------------------------------------------- 1 | <0 bytes> -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/510/expected-value.txt: -------------------------------------------------------------------------------- 1 | "00000000" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/510/submission.txt: -------------------------------------------------------------------------------- 1 | SHA256.wordToHex 0 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-compiler-dependencies/steps/511/expected-value.txt: -------------------------------------------------------------------------------- 1 | "0012d687" -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-syntax-7-3-7/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | **/elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-syntax-7-3-7/steps/531/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok Nothing -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-syntax-7-3-7/steps/721/submission.txt: -------------------------------------------------------------------------------- 1 | moduleText -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-syntax-7/context-app/.gitignore: -------------------------------------------------------------------------------- 1 | **/elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-syntax-7/steps/531/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-syntax-7/steps/533/expected-value.txt: -------------------------------------------------------------------------------- 1 | Ok [] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/elm-syntax-7/steps/721/submission.txt: -------------------------------------------------------------------------------- 1 | moduleText -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/list-range/steps/0/expected-value.txt: -------------------------------------------------------------------------------- 1 | [0,1,2,3] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/list-range/steps/0/submission.txt: -------------------------------------------------------------------------------- 1 | List.range 0 3 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/list-range/steps/1/expected-value.txt: -------------------------------------------------------------------------------- 1 | [3,4] -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/list-range/steps/1/submission.txt: -------------------------------------------------------------------------------- 1 | List.range 3 4 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/list-range/steps/10/submission.txt: -------------------------------------------------------------------------------- 1 | List.range 0 100 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/list-range/steps/11/submission.txt: -------------------------------------------------------------------------------- 1 | List.range 1 101 -------------------------------------------------------------------------------- /implement/test-and-train/elm-interactive-scenarios-train/list-range/steps/20/submission.txt: -------------------------------------------------------------------------------- 1 | List.range 2 202 -------------------------------------------------------------------------------- /implement/test-elm-time/.gitignore: -------------------------------------------------------------------------------- 1 | /obj/ 2 | /bin/ 3 | 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/modeled-in-elm/generate-json-coders/.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff/ 2 | 3 | out/ 4 | 5 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/.gitignore: -------------------------------------------------------------------------------- 1 | **/.kalmit/ 2 | **/.cache/ 3 | **/elm-stuff/ 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/calculator-webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/compilation-interface-multiple-source-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/compilation-interface-multiple-source-dir/static-content/demo-file.mp3: -------------------------------------------------------------------------------- 1 | test content -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/counter-webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/cross-propagate-http-headers-to-and-from-body/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/http-long-polling/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/http-proxy/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/migrate-from-int-to-string-builder-web-app/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/read-source-file-webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/read-source-file-webapp/static-content/alpha/file-in-directory.txt: -------------------------------------------------------------------------------- 1 | Text file content -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/read-source-file-webapp/static-content/demo-file.mp3: -------------------------------------------------------------------------------- 1 | test content -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/string-builder-webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/test-prevent-damage-by-migrate-webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/volatile-process-from-local-blob/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/test-elm-time/test-elm-apps/volatile-process-native/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | 3 | *.js 4 | -------------------------------------------------------------------------------- /implement/vscode/extension/pine/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | client/node_modules/** 3 | client/out/** 4 | -------------------------------------------------------------------------------- /implement/vscode/extension/pine/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | client/server 4 | .vscode-test 5 | 6 | *.tsbuildinfo 7 | -------------------------------------------------------------------------------- /implement/vscode/extension/pine/client/testFixture/diagnostics.txt: -------------------------------------------------------------------------------- 1 | ANY browsers, ANY OS. -------------------------------------------------------------------------------- /implement/website/pinevm/.gitignore: -------------------------------------------------------------------------------- 1 | **/elm-stuff/ 2 | --------------------------------------------------------------------------------