VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
// Deli Counter | |
// 1. take a ticket | |
// 2. check if our number is up | |
// 3. order from counter if ready | |
// 4. change the deli inventory on order | |
// 5. receive our order, from the counter | |
// 6. pay for the order | |
// 7. leave if paid | |
const readline = require("readline"); |
/* | |
* Function randomInteger: | |
* | |
* Accepts two numbers, and returns a random integer | |
* between the min and max inclusive of both numbers | |
* | |
* Example Usage: | |
* randomInteger(1, 10) => 7 | |
* randomInteger(1, 10) => 3 | |
* randomInteger(1, 10) => 9 |
let dinnerFood = ['salad', 'soup', 'casserole']; | |
let breakfastFood = ['omelet', 'pancakes', 'fruit']; | |
console.log(`From array: ${breakfastFood}`); | |
console.log(`To array: ${dinnerFood}`); | |
function moveItem(itemToMove , fromArray, toArray) { | |
function extractItem() { | |
// we know the item is in the starting array |
VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated