jist 0.1.9

Welcome to Jist a lightweight and efficient programming language built in Rust, designed for simplicity, flexibility, and fast performance with a clean and readable syntax. Github: https://github.com/jon429r/JistR
Documentation
import time

# Record the start time
start_time = time.time()

# Declare the variable
a = 101 + 1

# Record the end time
end_time = time.time()

# Calculate the elapsed time
elapsed_time = end_time - start_time

# Print the variable and the elapsed time
print(f"Variable a: {a}")
print(f"Time taken to declare the variable: {elapsed_time} seconds")

# Time taken to declare the variable: 9.5367431640625e-07 seconds
# or    0.00000095367431640625 seconds