GoToLoop
GoToLoop
https://forum.Processing.org/two/discussion/14159/delay-when-playing-multiple-videos-at-the-same-time
```coffee class Rectangle @(@width: number, @height: number) ``` IMO, the code above should be transpiled as just: ```ts class Rectangle { constructor(public width: number, public height: number) {} } ```...
> , whereas some only use TypeScript for checking and not building. IMO, Civet should focus on transpiling to TS only. Let CoffeeScript deal w/ JS transpilation.
Keyword `var` is still lacking a shorthand for it though. I also miss a shorthand for _prototype_ like in CoffeeScript, which uses `::` btW. And also Python's keyword `elif`.
Whatever you decide, please, don't get rid of the classic loading functions like p5js is doing for its version 2! 🙏
Well, this already merged commit have all preload-related code removed! https://github.com/processing/p5.js/pull/7203 IMO, Processing flavors should strive to be more similar to the original Java Processing than trying to strictly adhere...
> When using pyinstaller, the jar files need to be included in the install package. What if we'd prefer py5 to use the system's own JDK from $JAVA_HOME instead?
> You always need to include the jars though. py5 won't be able to run if the jars in the Python package are missing. I'm confused w/ your last statements......
I wonder if C's learn track could use some of those from C++'s? https://GitHub.com/exercism/cpp/tree/main/exercises/concept https://GitHub.com/exercism/cpp/tree/main/concepts https://GitHub.com/exercism/c/tree/main/concepts Just noticed there are hidden concepts for C: https://Exercism.org/tracks/c/concepts/basics Although no related exercises like...
Perhaps we can try out some "Turtle" library for Java Processing, which can draw on the Processing's canvas: https://GitHub.com/leahbuechley/Turtle