Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What programming language is this? [closed]

We're trying to script a CAD program, and this is the example for controlling the date in our design slugs, but I don't even know what language it is to know what to do with it.

! LIBEDATE

def &d$ &ret$

set &d$ = rstr(`/`,` `,#d$);
set &ret$ = word(&d$,2),`/`,word(&d$,1),`/`,subs(word(&d$,3), -2, 2)
like image 665
Hutch Avatar asked Mar 16 '10 17:03

Hutch


People also ask

What is closed to programming language?

In programming languages, a closure, also lexical closure or function closure, is a technique for implementing lexically scoped name binding in a language with first-class functions. Operationally, a closure is a record storing a function together with an environment.

Which programming languages are closed source?

Examples include VBScript, c#, Matlab, Microfocus COBOL, and IBM's mainframe, AIX, and linux compilers. There are also programming languages that are used inside a company, but the compiler is not made available outside the company, or has very limited distribution. IBM's PL/S and its derivatives are a classic example.

Is Python closed source language?

Python is developed under an OSI-approved open source license, making it freely usable and distributable, even for commercial use.

Is Python close to C++?

Python and C++ are the programming languages used for general purpose, but both Python and C++ languages differ from each other in many ways. C++ is originated from the C language with multiple paradigms and provide the feature of compilation. Python is a general-purpose and one of the high-level programming languages.


1 Answers

What CAD is it? Almost all the ancient CADs have their own (typically weird and ill-designed) scripting languages. Can it be one of the Tribon products?

like image 128
SK-logic Avatar answered Oct 07 '22 18:10

SK-logic