DEV Community

Cover image for Wing Custom Platforms: Transforming Infrastructure Policies into Code

Wing Custom Platforms: Transforming Infrastructure Policies into Code

Hasan on February 01, 2024

Wow it's 2024, almost a quarter of the way through the 21st century, if you are reading this you probably should pat yourself on the back, because ...
Collapse
 
srbhr profile image
Saurabh Rai

Winglang seems really intresting.
Redbull Winglang gives you wings.

I see this on the docs:

class Group1 {
  new() {
    new cloud.Bucket() as "Store";
  }
}

class Group2 {
  new() {
    new cloud.Bucket() as "Store";
  }
}

// The following is valid
new Group1();
new Group2();
Enter fullscreen mode Exit fullscreen mode

Does this make Wing an Object Oriented way to manage cloud platforms?

Collapse
 
shaiber profile image
Shai Ber

Thanks Hasan, great read!