Academic literature on the topic 'Pl/1 (Programming Language)'

Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles

Select a source type:

Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'Pl/1 (Programming Language).'

Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.

You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.

Journal articles on the topic "Pl/1 (Programming Language)"

1

BOZANTAN, ANDREI, and VASILE BERINDE. "Applications of the PL homotopy algorithm for the computation of fixed points to unconstrained optimization problems." Creative Mathematics and Informatics 22, no. 1 (2013): 41–46. http://dx.doi.org/10.37193/cmi.2013.01.03.

Full text
Abstract:
This paper describes the main aspects of the ”piecewise-linear homotopy method” for fixed point approximation proposed by Eaves and Saigal [Eaves, C. B. and Saigal, R., Homotopies for computation of fixed points on unbounded regions, Mathematical Programming, 3 (1972), No. 1, 225–237]. The implementation of the method is developed using the modern programming language C# and then is used for solving some unconstrained optimization problems. The PL homotopy algorithm appears to be more reliable than the classical Newton method in the case of the problem of finding a local minima for Schwefel’s function and other optimization problems.
APA, Harvard, Vancouver, ISO, and other styles
2

BOZANTAN, ANDREI, and VASILE BERINDE. "A numerical study on the robustness and efficiency of the PL homotopy algorithm for solving unconstrained optimization problems." Creative Mathematics and Informatics 24, no. 2 (2015): 113–23. http://dx.doi.org/10.37193/cmi.2015.02.03.

Full text
Abstract:
Our aim in this paper is to illustrate the relevance of the fixed point piecewise-linear homotopy algorithm for solving unconstrained optimization problems. The numerical tests are performed by using an implementation of the piecewise-linear homotopy algorithm in the modern programming language C#, as described previously in [Bozantan, A., An implementation of the piecewise-linear homotopy algorithm for the computation of fixed points, Creat. Math. Inform., 19 (2010), No. 2, 140–148] and [Bozantan, A. and Berinde, V., Applications of the PL homotopy algorithm for the computation of fixed points to unconstrained optimization problems, Creat. Math. Inform., 22 (2013), No. 1, 41–46]. As shown by the numerical experiments done on a set of classic test functions in optimization theory, the PL homotopy algorithm appears to be more reliable than the classical Newton’s method and some other important methods for finding local or global minima.
APA, Harvard, Vancouver, ISO, and other styles
3

Holt, Tom G., Claude Dufresne, Jerrold M. Liesch, and Gary K. Mallow. "The Design and Development of an Integrated Natural Products Screening Database." Journal of Biomolecular Screening 5, no. 6 (December 2000): 421–33. http://dx.doi.org/10.1177/108705710000500605.

Full text
Abstract:
We designed and developed NEXUS—a new natural products screening database and related suite of software applications-to utilize the spectacular increases in assay capacity of the modern high throughput screening (HTS) environment. NEXUS not only supports seamless integration with separate HTS systems, but supports user-customized integration with external laboratory automation, particularly sample preparation systems. Designed and developed based on a detailed process model for natural products drug discovery, NEXUS comprises two integrated parts: (1) a single schema of Oracle tables and callable procedures and functions, and (2) software "front-ends" to the database developed using Microsoft Excel and Oracle Discovery/2000. Many of the back-end processing functions were written in Programming Language/Structured Query Language (PL/SQL) to provide an Application Programmer's Interface, which allows end users to create custom applications with little input from information technology professionals.
APA, Harvard, Vancouver, ISO, and other styles
4

Fauri Fauzi, Muhammad Ashraf, Daeng Ahmad Zuhri Zuhud, and Hafiz Husin. "The Importance of Programming Paradigms to Manufacturing Engineering Graduates: A Case Study from International Islamic University Malaysia Graduates." Applied Mechanics and Materials 465-466 (December 2013): 387–94. http://dx.doi.org/10.4028/www.scientific.net/amm.465-466.387.

Full text
Abstract:
Digital computers that automate manufacturing process are an important aspect for any manufacturing engineers in the modern world. Selection of the programming paradigm (PP), as well as the programming language (PL) that supports it, is crucial to ensure the correct ideas are being used to automate the solution of the problem. In current Malaysian Higher institution practices, various PPs and PLs courses are offered to current undergraduate manufacturing majors. An online survey was deployed to experienced manufacturing engineers from various manufacturing specializations in the industry. Graduates from one of Malaysias public universities, International Islamic University Malaysia (IIUM) have been chosen for this particular study. From the survey, it has been found that almost 80% of the participants agreed that PPs are important for manufacturing graduates. It was found out that 90% of the participants were from intermediate (scale of 3) until poor (scale of 1) to express their ability to explain PPs if asked. Only about 10% are able to explain on PPs (scale of 4 and 5). The study concluded that majority of the manufacturing graduates from IIUM agreed that PP is an important subject to be taught in university. However, it was found the majority of the manufacturing graduates lack the knowledge and understanding of PPs and general PLs.
APA, Harvard, Vancouver, ISO, and other styles
5

Florence, Spencer P., Bruke Fetscher, Matthew Flatt, William H. Temps, Tina Kiguradze, Dennis P. West, Charlotte Niznik, Paul R. Yarnold, Robert Bruce Findler, and Steven M. Belknap. "POP-PL: a patient-oriented prescription programming language." ACM SIGPLAN Notices 51, no. 3 (May 11, 2016): 131–40. http://dx.doi.org/10.1145/2936314.2814221.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Dzhidzhoyev, Vladislav Muratovich, Ruben Arturovich Buchatskiy, Michael Vyacheslavovich Pantilimonov, and Alexander Nikolaevich Tomilin. "Dynamic Compilation of User-Defined Functions in PL/pgSQL Language." Proceedings of the Institute for System Programming of the RAS 32, no. 5 (2020): 67–80. http://dx.doi.org/10.15514/ispras-2020-32(5)-5.

Full text
Abstract:
Many modern RDBMS provide procedural extensions for SQL programming language, which allow users to perform server-side complex computations. Use of such extensions improves modularity and code reuse, simplifies programming of application logic, and helps developers to avoid network overhead and enhance performance. Interpretation is mostly used to execute SQL queries and procedural extensions code, resulting in significant computational overhead because of indirect function calls and performing of generic checks. Moreover, most RDBMS use different engines for SQL queries execution and procedural extensions code execution, and it is necessary to perform additional computations to switch between different engines. Thus, interpretation of SQL queries combined with interpretation of procedural extensions code may drastically degrade performance of RDBMS. One solution is to use a dynamic compilation technique. In this paper, we describe the technique of dynamic compilation of PL/pgSQL procedural language for the PostgreSQL database system using LLVM compiler infrastructure. Dynamic compiler of PL/pgSQL procedural language is developed as part of PostgreSQL queries dynamic compiler. Proposed technique helps to get rid of computational overhead caused by interpretation usage. Synthetic performance tests show that the developed solution speeds up SQL queries execution by several times.
APA, Harvard, Vancouver, ISO, and other styles
7

Klensin, J. C. "The programming language standards scene, ten years on Paper 7: PL/I." Computer Standards & Interfaces 16, no. 5-6 (September 1994): 469–75. http://dx.doi.org/10.1016/0920-5489(94)90027-2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Isaeva, G. N., N. N. Teodorovich, and Y. Y. Sidorov. "Tendencies of development of languages of programming of the high level." Informacionno-technologicheskij vestnik 14, no. 4 (December 30, 2017): 117–25. http://dx.doi.org/10.21499/2409-1650-2017-4-117-125.

Full text
Abstract:
The main directions of the development of modern high-level programming languages (HL PL) and their evolutionary development are considered in the article. The statistics are presented for the HL PL, which are key in the framework of various programming paradigms, based on the data of modern electronic resources. A tendency is shown to obliterate the boundaries between the strict classification of the HL PL, as belonging to different computational models underlying the development of the language. It is shown that the main reason for the popularity of scripting languages and languages of reactive programming is related to the scale of solved economic problems, the mass coverage of all spheres of the economy by network structures, and also the desire of developers to have a simple, understandable and universal software development tool.
APA, Harvard, Vancouver, ISO, and other styles
9

Vasić, Marko, David Soloveichik, and Sarfraz Khurshid. "CRN++: Molecular programming language." Natural Computing 19, no. 2 (January 3, 2020): 391–407. http://dx.doi.org/10.1007/s11047-019-09775-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Lazebna, Nataliia. "ENGLISH-LANGUAGE BASIS OF PYTHON PROGRAMMING LANGUAGE." Research Bulletin Series Philological Sciences 1, no. 193 (April 2021): 371–76. http://dx.doi.org/10.36550/2522-4077-2021-1-193-371-376.

Full text
Abstract:
The dynamic nature of the Python programming language, the accumulation of a certain linguosemiotic basis indicates the similarity of this language with the English language, which is the international one and mediates human communication in both real and virtual worlds. In this study, the English language is positioned as the linguistic basis of Python language of programming, which is widely used in industry, research, natural language processing, textual information retrieval, textual data processing, texts corpora, and more. English language, its lexical features, text representation and interaction with logical and functional basis in the context of Python programming language are considered further in this research. Thus, the unity of verbal units and symbols in the modern English-language digital discourse indicates both the order and variability of the constituents therein. The functionality of linguosemiotic elements produces a network of relationships, where each of these integrated elements can produce from a word or symbol a holistic set of units, which are extrapolated in the English-language digital discourse and mediates human communication with a machine. An overview of the basic properties of Python language, such as values, types, expressions, and operations are in focus of the study. Though users understand the responses of Python interpreter, there is a need to follow certain instructions and codes. To facilitate work with this programming language and prescribed English-language commands, it is necessary to involve linguists to cooperate with programmers to invent a certain logical and reasonable principle of Python commands operation.
APA, Harvard, Vancouver, ISO, and other styles
More sources

Dissertations / Theses on the topic "Pl/1 (Programming Language)"

1

Eshghi, Kave. "Meta-language in logic programming." Thesis, Imperial College London, 1987. http://hdl.handle.net/10044/1/38302.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Dulay, Naranker. "A configuration language for distributed programming." Thesis, Imperial College London, 1990. http://hdl.handle.net/10044/1/46287.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Foster, Ian. "Parlog as a systems programming language." Thesis, Imperial College London, 1988. http://hdl.handle.net/10044/1/47065.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

McCabe, Francis Gregory Christopher. "Logic and objects : language, application and implementation." Thesis, Imperial College London, 1989. http://hdl.handle.net/10044/1/47568.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

NEHAB, DIEGO FERNANDES. "THE IMPLEMENTATION OF THE SLOTH PROGRAMMING LANGUAGE." PONTIFÍCIA UNIVERSIDADE CATÓLICA DO RIO DE JANEIRO, 2002. http://www.maxwell.vrac.puc-rio.br/Busca_etds.php?strSecao=resultado&nrSeq=6521@1.

Full text
Abstract:
COORDENAÇÃO DE APERFEIÇOAMENTO DO PESSOAL DE ENSINO SUPERIOR
Este trabalho descreve uma nova linguagem de programação funcional e sua implementação. Sloth é uma linguagem funcional pura interpretada, não estrita, que suporta funções de ordem elevada como valores de primeira classe, tipos de dados estruturados e definições múltiplas de funções selecionadas por casamento de padrões. Sloth foi criada para o uso no meio acadêmico, em atividades relacionadas ao uso e à  implementação de linguagens funcionais. Sendo assim, durante o desenvolvimento de Sloth, uma grande preocupação com a simplicidade direcionou tanto a especificação da linguagem quanto sua implementação. Como resultado, a sintaxe da linguagem é modesta, mas expressiva o bastante para permitir seu uso em aplicações práticas. Da mesma forma, a grande simplicidade e portabilidade de sua implementação não prejudicam severamente sua eficiência. As principais contribuições do trabalho são o projeto e desenvolvimento de Sloth, uma otimização à  redução de grafos combinatórios como alternativa ao uso dos combinadores de Turner, uma arquitetura inovadora para a implementação de linguagens funcionais interpretadas, baseada no uso cooperativo de duas linguagens de programação, e uma análise comparativa entre a eficiência de Sloth e outras linguagens semelhantes.
This work describes a new functional programming language and its implementation. Sloth is a non-strict purely functional interpreted programming language, which supports high order functions as first class values, structured data types, and pattern-matching based function definitions. Sloth was created for academical use in activities related to the use and to the implementation of functional programming languages. Therefore, there has been a great concern with the simplicity of both the language specification and its implementation. As a result, Sloth's syntax is modest, but expressive enough for practical applications. Furthermore, the great simplicity and portability of its implementation has no serious impact on its performance. The main contributions of this work are the design and implementation of Sloth, an optimization to combinator graph reduction as an alternative to the use of Turner combinators, a new architecture for the implementation of interpreted functional programming languages, based on the cooperation between two programming languages, and the performance comparison between Sloth and similar languages.
APA, Harvard, Vancouver, ISO, and other styles
6

Gregory, S. "Design, application and implementation of a parallel logic programming language." Thesis, Imperial College London, 1985. http://hdl.handle.net/10044/1/37712.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

FILHO, DANTE CORBUCCI. "LISPLOG: A LANGUAGE FOR FUNCTIONAL AND LOGIC PROGRAMMING." PONTIFÍCIA UNIVERSIDADE CATÓLICA DO RIO DE JANEIRO, 1989. http://www.maxwell.vrac.puc-rio.br/Busca_etds.php?strSecao=resultado&nrSeq=14348@1.

Full text
Abstract:
CONSELHO NACIONAL DE DESENVOLVIMENTO CIENTÍFICO E TECNOLÓGICO
Esta dissertação apresenta uma integração entre a programação funcional e a programação em lógica, obtida pela definição e implementação da Linguagem LispLog. Nesta nova linguagem, o resultado de uma resolução pode ser utilizado como argumento de uma função (pelo operador metalisp) e o resultado da avaliação de uma função pode ser ligado a uma variável lógica (pelo operador avalia). A construção desta linguagem foi realizada a partir da simulação, em microcomputador similar ao IBM-PC, de uma máquina com arquitetura de pilhas, chamada Máquina LispLog, e de seu compilador. A utilização desta linguagem é possível através do Sistema LispLog, que fornece um ambiente de programação orientado por menus.
This dissertation shows an integration between the function programming and logic programming, achieved through LispLog Language’s definition and implementation. In this new language the resultant of a resolution may be used as an argument of a function (through metalisp operator) and the result of a function’s avaliation may be linked to a logic variable (through avalia operator). The LispLog Language was constructed by a simulation of stack architecture machine, named LispLog Machine, and its compiler, in a microcomputer similar similar to IBM-PC. The LispLog System provides a programming environment oriented by menus, wich makes possible the use of this language
APA, Harvard, Vancouver, ISO, and other styles
8

Frost, David Philip. "The design of a natural language interface for medical expert systems." Thesis, Imperial College London, 1990. http://hdl.handle.net/10044/1/46306.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Liu, Yi. "BoxScript : a language for teaching component-oriented programming /." Full text available from ProQuest UM Digital Dissertations, 2005. http://0-proquest.umi.com.umiss.lib.olemiss.edu/pqdweb?index=0&did=1276391241&SrchMode=1&sid=8&Fmt=2&VInst=PROD&VType=PQD&RQT=309&VName=PQD&TS=1185305902&clientId=22256.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Graunke, Kenneth William. "Extensible Scheduling in a Haskell-based Operating System." PDXScholar, 2010. https://pdxscholar.library.pdx.edu/open_access_etds/1.

Full text
Abstract:
This thesis presents Lighthouse, an experimental branch of the Haskell-based House operating system which integrates Li et al.'s Lightweight Concurrency framework. First and foremost, it improves House's viability as a "real operating system" by providing a new extensible scheduler framework which makes it easy to experiment with different scheduling policies. In particular, Lighthouse extends Concurrent Haskell with thread priority and implements a priority-based scheduler which significantly improves system responsiveness when compared with GHC's normal round-robin scheduler. Even while doing this, it improves on House's claim of being "written in Haskell" by moving a whole subsystem out of the complex C-based runtime system and into Haskell itself. In addition, Lighthouse also includes an alternate, simpler implementation of Lightweight Concurrency which takes advantage of House's unique setting (running directly on uniprocessor x86 hardware). This experience sheds light on areas that need further attention before the system can truly be viable---primarily interactions between blackholing and interrupt handling. In particular, this thesis uncovers a potential case of self-deadlock and suggests potential solutions. Finally, this work offers further insight into the viability of using high-level languages such as Haskell for systems programming. Although laziness and blackholing present unique problems, many parts of the system are still much easier to express in Haskell than traditional languages such as C.
APA, Harvard, Vancouver, ISO, and other styles
More sources

Books on the topic "Pl/1 (Programming Language)"

1

Rockey, Clarence J. Structured PL/1 programming. 2nd ed. Dubuque, Iowa: W.C. Brown Publishers, 1985.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
2

Association, Research and Education, ed. The ESSENTIALS of PL/1 programming language. Piscataway, N.J: Research and Education Association, 1990.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
3

Davis, Kathi. Structured programming: PL/I with PL/C. New York: Holt Rinehart and Winston, 1988.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
4

Michael, Kennedy. Structured PL/ZERO plus PL/ONE. 2nd ed. Englewood Cliffs, N.J: Prentice-Hall, 1988.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
5

Oracle 10g Developer: PL/SQL programming. [United States]: Thomson Course Technology, 2008.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
6

Casteel, Joan. Oracle 10g Developer: PL/SQL programming. [United States]: Thomson Course Technology, 2008.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
7

Sue, Green, Teague Peter, and British Computer Society. PL/I Specialist Group., eds. Practical PL/I. Cambridge [Cambridgeshire]: Published by Cambridge University Press on behalf the British Computer Society, 1985.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
8

Reddy, Rama N. PL/I: Structured programming and problem solving. St. Paul: West Pub. Co., 1986.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
9

Clarke, Gordon R. Practical PL/1. Cambridge: Cambridge University Press on behalf (of) the British Computer Society, 1985.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
10

Urman, Scott. Oracle PL/SQL programming. Berkeley, Calif: Osborne McGraw-Hill, 1996.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
More sources

Book chapters on the topic "Pl/1 (Programming Language)"

1

Dillon, Sean, Christopher Beck, Thomas Kyte, Joel Kallman, and Howard Rogers. "PL/SQL." In Beginning Oracle Programming, 345–408. Berkeley, CA: Apress, 2002. http://dx.doi.org/10.1007/978-1-4302-5370-9_11.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Beresniewicz, John. "Contract-Oriented Programming." In Expert PL/SQL Practices, 213–33. Berkeley, CA: Apress, 2011. http://dx.doi.org/10.1007/978-1-4302-3486-9_8.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Dillon, Sean, Christopher Beck, Thomas Kyte, Joel Kallman, and Howard Rogers. "Case Study 1 — Debugging PL/SQL." In Beginning Oracle Programming, 787–821. Berkeley, CA: Apress, 2002. http://dx.doi.org/10.1007/978-1-4302-5370-9_21.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Büchi, Martin. "PL/SQL Programming in the Large." In Expert PL/SQL Practices, 313–66. Berkeley, CA: Apress, 2011. http://dx.doi.org/10.1007/978-1-4302-3486-9_11.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Weik, Martin H. "programming language." In Computer Science and Communications Dictionary, 1351. Boston, MA: Springer US, 2000. http://dx.doi.org/10.1007/1-4020-0613-6_14888.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Hehner, Eric C. R. "Programming Language." In A Practical Theory of Programming, 70–90. New York, NY: Springer New York, 1993. http://dx.doi.org/10.1007/978-1-4419-8596-5_5.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Yao, Jiewen, and Vincent Zimmer. "Programming Language." In Building Secure Firmware, 825–54. Berkeley, CA: Apress, 2020. http://dx.doi.org/10.1007/978-1-4842-6106-4_20.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Zhirkov, Igor. "Assembly Language." In Low-Level Programming, 17–38. Berkeley, CA: Apress, 2017. http://dx.doi.org/10.1007/978-1-4842-2403-8_2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Weik, Martin H. "declarative programming language." In Computer Science and Communications Dictionary, 371. Boston, MA: Springer US, 2000. http://dx.doi.org/10.1007/1-4020-0613-6_4527.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Weik, Martin H. "interactive programming language." In Computer Science and Communications Dictionary, 808. Boston, MA: Springer US, 2000. http://dx.doi.org/10.1007/1-4020-0613-6_9289.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Conference papers on the topic "Pl/1 (Programming Language)"

1

Florence, Spencer P., Bruke Fetscher, Matthew Flatt, William H. Temps, Tina Kiguradze, Dennis P. West, Charlotte Niznik, Paul R. Yarnold, Robert Bruce Findler, and Steven M. Belknap. "POP-PL: a patient-oriented prescription programming language." In GPCE'15: Generative Programming: Concepts and Experiences. New York, NY, USA: ACM, 2015. http://dx.doi.org/10.1145/2814204.2814221.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Silva, Diego, and Joao Gluz. "AgentSpeak(PL): A New Programming Language for BDI Agents with Integrated Bayesian Network Model." In 2011 International Conference on Information Science and Applications (ICISA 2011). IEEE, 2011. http://dx.doi.org/10.1109/icisa.2011.5930301.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

de la Maza, Michael. "Luv: A Programming Language for Describing Human Relationships." In 31st Annual International Computer Software and Applications Conference - Vol. 1- (COMPSAC 2007). IEEE, 2007. http://dx.doi.org/10.1109/compsac.2007.135.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Wang, Sida I., Samuel Ginn, Percy Liang, and Christopher D. Manning. "Naturalizing a Programming Language via Interactive Learning." In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers). Stroudsburg, PA, USA: Association for Computational Linguistics, 2017. http://dx.doi.org/10.18653/v1/p17-1086.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Rauchwerger, Lawrence. "Session details: Parallelism 1." In PLDI '14: ACM SIGPLAN Conference on Programming Language Design and Implementation. New York, NY, USA: ACM, 2014. http://dx.doi.org/10.1145/3251062.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Walker, David. "Session details: Verification 1." In PLDI '14: ACM SIGPLAN Conference on Programming Language Design and Implementation. New York, NY, USA: ACM, 2014. http://dx.doi.org/10.1145/3251072.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Xiaoning Wang, Lijuan Xiao, Wei Li, Haiyan Yu, and Zhiwei Xu. "Abacus: a service-oriented programming language for grid applications." In 2005 IEEE International Conference on Services Computing (SCC'05) Vol-1. IEEE, 2005. http://dx.doi.org/10.1109/scc.2005.22.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Smaragdakis, Yannis. "Session details: Static analysis 1." In PLDI '14: ACM SIGPLAN Conference on Programming Language Design and Implementation. New York, NY, USA: ACM, 2014. http://dx.doi.org/10.1145/3251071.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Jones, Rhys Price, Doug Cooper, Dan Friedman, Ric Holt, and Peter Robinson. "Issues in the choice of programming language for CS 1 (abstract)." In the twenty-fourth SIGCSE technical symposium. New York, New York, USA: ACM Press, 1993. http://dx.doi.org/10.1145/169070.169531.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Edelmann, Romain, Jad Hamza, and Viktor Kunčak. "Zippy LL(1) parsing with derivatives." In PLDI '20: 41st ACM SIGPLAN International Conference on Programming Language Design and Implementation. New York, NY, USA: ACM, 2020. http://dx.doi.org/10.1145/3385412.3385992.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Reports on the topic "Pl/1 (Programming Language)"

1

Davenport, Douglas J. Object-Oriented Visual Programming Language. Phase 1. Fort Belvoir, VA: Defense Technical Information Center, October 1995. http://dx.doi.org/10.21236/ada300020.

Full text
APA, Harvard, Vancouver, ISO, and other styles
We offer discounts on all premium plans for authors whose works are included in thematic literature selections. Contact us to get a unique promo code!

To the bibliography