Dry-Run Rubber (simulation)

117 Views Asked by At

I would like to use Rubber for an app i'm making. Is there any way to do a dry-run of the same without actually creating instances on ec2?

1

There are 1 best solutions below

0
On
Byte x, y, z;
            x = 255;
            y = 3;
            z = (Byte)(x << y); Console.WriteLine(z);

            z = (Byte)(x >> y);
            Console.WriteLine(z);

            z = (byte)(x & y);
            
Console.WriteLine(z); z = (byte)(x | y); Console.WriteLine(z);

Boolean b = true;
Console.WriteLine(Convert.ToInt16 (b));