This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ActiveKey { | |
| my startTouch (TouchPoint) | |
| my flicked = false | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type T | |
| class Graph[T] { | |
| my vertices (Set[Vertex[T]]) | |
| init [new] { | |
| vertices = Set[Vertex[T]] #[] | |
| } | |
| on [numVertices] (Int) is getter { | |
| my counted = Set[Vertex[T]] #[] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "Image viewer" | |
| Author: "ALANVF" | |
| Date: 28-Jun-2022 | |
| File: %image-viewer.red | |
| Needs: 'View | |
| Purpose: { | |
| Basic image viewer | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "Text editor" | |
| Author: "ALANVF" | |
| Date: 16-Jun-2022 | |
| File: %text-editor.red | |
| Needs: 'View | |
| Purpose: { | |
| Basic text editor | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "Timer app" | |
| Author: "ALANVF" | |
| Date: 14-Jun-2022 | |
| File: %timer.red | |
| Needs: 'View | |
| Purpose: { | |
| Basic timer application | |
| } | |
| ] |