পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Monday, February 6, 2017

Rexx - Brexx

BRexx is a lighter weight implementation of Rexx. It still has a lot of functionality to offer as part of the Rexx implementation.

Setting up BRexx

The first step in BRexx is to set it up on the local machine. To do this, one needs to perform the following steps −
Step 1 − Go to the BRexx download site − https://ftp.gwdg.de/pub/languages/rexx/brexx/html/rx.html
BRexx Go to the downloads section and download the product.
Step 2 − Unzip the contents of the Brexx zipped file.
Step 3 − Add the BRexx\bin path to the path variable on the system.
Step 4 − Create a new variable called RXLIB and point it to the lib folder in the Brexx folder.

Running the First BRexx Program

Create a file called main.rexx and place the following code in the file.
/* Main program */ 
say hello 
To run the program, run the following command.
rexx32 main.rexx 
When you run the above command, you will get the following output.
hello
Let us now discuss some of the most commonly used functions available in the BRexx library.
S.No. Functions available in the BRexx Library
1 acos Command This command is used to get the arc-cosine conversion of a number.
2 cos Command This command is used to get the cosine conversion of a number.
3 sin Command This command is used to get the sine conversion of a number.
4 asin Command This command is used to get the arc-sine conversion of a number.
5 tan Command This command is used to get the tangent conversion of a number.
6 atan Command This command is used to get the arc-tangent conversion of a number.
7 mkdir Command This command is used to create a directory in the current working directory.
8 rmdir Command This command is used to remove a directory in the current working directory.
9 dir Command This command is used to return the entire directory listing.

No comments:

Post a Comment