here's what you get when you start to load global.d.ts and then index.d.ts from definitely typed.
flowchart LR
Z("global.d.ts")
A("index.d.ts")
Z --> A
subgraph Root Fileshere's what you get when you start to load global.d.ts and then index.d.ts from definitely typed.
flowchart LR
Z("global.d.ts")
A("index.d.ts")
Z --> A
subgraph Root Files| import processing.core.PApplet; | |
| public class MyExampleProcessingApp extends PApplet { | |
| public static void main(String[] args) { | |
| System.out.println("MyExampleProcessingApp main() started"); | |
| // The string must match your full class name: | |
| PApplet.main(new String[] { "MyExampleProcessingApp" }); |
| class Point { | |
| x: number; | |
| y: number; | |
| /** the label for this point */ | |
| label: string; | |
| constructor(givenLabel: string,givenX: number, givenY:number){ | |
| console.log("constructor was called") | |
| this.x = givenX; |
| const fs = require('fs/promises'); | |
| async function readFileAndSolveProblem() { | |
| const inputRaw = await fs.readFile("./inputs/inputDay1A.txt", { encoding: 'utf8' }) | |
| const inputLines = inputRaw.split("\n"); | |
| console.log({ inputLines }) | |
| //TODO: solve the problem here, based on inputLines | |
| } |
| import fs from 'fs/promises'; | |
| async function readFileAndSolveProblem() { | |
| const inputRaw = await fs.readFile("./inputs/inputDay1A.txt", { encoding: 'utf8' }) | |
| const inputLines: string[] = inputRaw.split("\n"); | |
| console.log({ inputLines }) | |
| //TODO: solve the problem here, based on inputLines | |
| } |
| type Player = "X" | "O" | |
| type PosState = Player | "" | |
| type BoardState = [ | |
| PosState,PosState,PosState, | |
| PosState,PosState,PosState, | |
| PosState,PosState,PosState | |
| ] | |
| //type WinState = "draw" | "X won" | "O won" | "not finished" |
burger 3d view demo (ascii stl file)
solid Exported from Blender-3.2.1
facet normal 0.017014 0.063498 0.997837
outer loop
vertex -0.000000 0.678245 0.906216
vertex -0.000000 0.272585 0.932030
vertex 0.136293 0.236066 0.932030
endloop