Power result

using System;
using UnityEngine;

public class Power : MonoBehaviour
{
    private void Start()
    {
        Debug.Log(Math.Pow(2, 24));
    }
}

This is how I’ve done this challenge

2 Likes

Great job completing the challenge!

1 Like

Thank you!

Privacy & Terms