Evo API Draft
  • Java
    • Intro
    • Imports
    • Constructing Objects
    • Properties
    • Type Annotations
    • Conversions
    • Explicit Conversions
    • Behaviors
    • Creating and Extending Types
    • Promises
  • mc-std
    • Intro
    • Commands
Powered by GitBook
On this page
  1. Java

Constructing Objects

Constructing Objects with the Java API

This should be able to work, because you can use how JS classes work under the hood (function prototypes) to make this behavior work smoothly.

const ls = new ArrayList();
ls.add(1);
PreviousImportsNextProperties

Last updated 2 years ago