logoalt Hacker News

ben_wtoday at 2:43 AM1 replyview on HN

> don't do anything new, god forbid you may actually learn something

vs

> vibe code your own wrapper around the OS API


Replies

999_cirnotoday at 2:57 AM

In fact, I suggest reviewing the documentation to assess your own level:

https://developer.apple.com/documentation/virtualization/run...

If the below sounds too complex to work with, can review more basics first. Can start with a Swift tutorial

  virtualMachine.start(completionHandler: { (result) in
      if case let .failure(error) = result {
           fatalError("Virtual machine failed to start with \(error)")
      }
  })