Pnuts

Pnuts
ParadigmObject-oriented, Scripting
DeveloperToyokazu Tomatsu (Sun Japan)
First appeared1997
Stable release
1.2.1 / July 24, 2007 (2007-07-24)
Typing disciplinestatic, dynamic, duck
PlatformJVM
OSCross-platform
LicenseSun Public License
Websitehttp://java.net/projects/pnuts (2017 archive)
Influenced by
Java

Pnuts is a dynamic scripting language for the Java platform. It is designed to be used in a dual language system with the Java programming language. The goals of the Pnuts project are to provide a small, fast scripting language that has tight integration with the Java language. Pnuts uses syntax that is simple and friendly to Java developers, while also being very expressive.

Relationship to Java

Because Java and Pnuts share the same type system, Java code can easily invoke or define Pnuts functions. Likewise, Pnuts code can easily manipulate Java objects. Pnuts code can even define Java classes. Because Pnuts compiles to Java byte codes, these classes can be used by Java just like any other class. A class written in Pnuts can even later be replaced by a class written in Java with no other code changes.

Pnuts syntax can look very similar to Java. The following is a code sample written in Java that is also a valid Pnuts script:

import java.util.ArrayList;
import java.util.List; 
List<String> countries = new ArrayList<String>(); 
countries.add("Canada"); 
countries.add("Austria"); 
countries.add("Brazil"); 
Collections.sort(countries); 
for (String country : countries)
    System.out.println("Hello " + country);

Alternatively, the expressiveness of Pnuts could be utilized:

use("pnuts.lib") // Standard module that makes sort, println and other functions available. 
countries = ["Canada", "Austria", "Brazil"] 
sort(countries) 
for (country : countries) println("Hello " + country)

History

Pnuts was originally developed in 1997 by Toyokazu Tomatsu as a testing tool for Java classes. Pnuts has since been extended, mainly focusing on essential functionality required for a Java-based scripting engine, such as a module system and bytecode compiler.

Commercial usage of Pnuts includes Rockwell Automation's FactoryTalk development system.

It looks like the project is no longer under development.

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.