Giter VIP home page Giter VIP logo

Comments (2)

maxime-esa avatar maxime-esa commented on July 30, 2024

What you show in the screenshot can be done in SDL with a DECISION symbol:

image

Or using a ternary operator in a TASK symbol:

someint := if someint > 0 then someint + 1 else someint - 1 fi

The DECISION is also used for switch-case:

image

And for ranges:

image

Loops can be done either using decisions and label/join:

image

Or using the "for" construct in a TASK symbol (warning: this is an extension to SDL, it will not work in other tools). The syntax is close to Python loops, and there are two variants:

for each in range (10) :     // range operator has the same syntax as the one in Python
    call writeln(each);
endfor

and:

for each in someArray : 
    // list of statements
endfor

from opengeode.

289202471 avatar 289202471 commented on July 30, 2024

Sorry to bother you again.
image
And, I also want to ask how to express "switch", "do-while" and "while" in the TASK in OpenGEODE.

Really thanks! A great help for me!

from opengeode.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.