citrine-lang.org citrine-lang.org

CITRINE-LANG.ORG

Citrine Programming Language

This planet deserves a better class of language. The Citrine Project aims to produce a simple. Scripting language for UNIX. I created Citrine because I wanted a clean and simple programming language that combines Smalltalk. Like messaging with prototypal inheritance (as in JavaScript. But not as convoluted) and Dynamic Scoping. Citrine is a product of Gabor Software. Dutch) founded by Gabor de Mooij. Citrine is open source and licensed BSD. January 2017 - POSIX regegular expressions added. Small core, ex...

http://www.citrine-lang.org/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR CITRINE-LANG.ORG

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Thursday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.2 out of 5 with 13 reviews
5 star
8
4 star
3
3 star
0
2 star
0
1 star
2

Hey there! Start your review of citrine-lang.org

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.7 seconds

CONTACTS AT CITRINE-LANG.ORG

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Citrine Programming Language | citrine-lang.org Reviews
<META>
DESCRIPTION
This planet deserves a better class of language. The Citrine Project aims to produce a simple. Scripting language for UNIX. I created Citrine because I wanted a clean and simple programming language that combines Smalltalk. Like messaging with prototypal inheritance (as in JavaScript. But not as convoluted) and Dynamic Scoping. Citrine is a product of Gabor Software. Dutch) founded by Gabor de Mooij. Citrine is open source and licensed BSD. January 2017 - POSIX regegular expressions added. Small core, ex...
<META>
KEYWORDS
1 citrine programming language
2 general purpose
3 like operating systems
4 latest news
5 to master
6 travis ci test report
7 reference manual
8 roadmap
9 program
10 run the program
CONTENT
Page content here
KEYWORDS ON
PAGE
citrine programming language,general purpose,like operating systems,latest news,to master,travis ci test report,reference manual,roadmap,program,run the program,ctr hello ctr,welcome visitor,features,minimalist syntax,message based,magic methods,for dsl
SERVER
OpenBSD httpd
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Citrine Programming Language | citrine-lang.org Reviews

https://citrine-lang.org

This planet deserves a better class of language. The Citrine Project aims to produce a simple. Scripting language for UNIX. I created Citrine because I wanted a clean and simple programming language that combines Smalltalk. Like messaging with prototypal inheritance (as in JavaScript. But not as convoluted) and Dynamic Scoping. Citrine is a product of Gabor Software. Dutch) founded by Gabor de Mooij. Citrine is open source and licensed BSD. January 2017 - POSIX regegular expressions added. Small core, ex...

INTERNAL PAGES

citrine-lang.org citrine-lang.org
1

man(1)

http://www.citrine-lang.org/docs.ctr

Ctr - run a Citrine program. Citrine is general purpose programming language for UNIX-like operating systems. Citrine has 5 literals:. Booleans (True, False). Numbers (1, -2, 3.5). Strings 'All Strings are UTF8! Code Blocks { parameters code }. The following messages are part of the Core API of the Citrine Programming Language:. Nil represents 'nothing' or NULL in other languages. Any object property that has not been assigned a value. Will contain Nil. Unlike some other programming languages. The messag...

2

Dynamic Scoping | Citrine

http://www.citrine-lang.org/dynamic_scoping.ctr

Why on earth would a programming language go to the dark side and bring dynamic scoping. Back from the death? Dynamic scoping is widely considered to be way too powerful, it's too easy to shoot yourself in the foot with. There are only a handful of languages providing dynamic scoping including Emacs Lisp. So why does Citrine opt for dynamic scoped. Variables instead of lexical scoping. This little code snippet above will print:. Otherwise you can't take it seriously! Simply 'forget' what values have been...

3

Roadmap for Citrine Language

http://www.citrine-lang.org/road.ctr

This is my personal roadmap / todo list. Feel free to contribute! Citrine Alpha 0.1, November 2015 - RELEASED. Lexer, Parser, Abstract Syntax Tree Walker. Files and System calls. Citrine Alpha 0.2, December 2015 - RELEASED. Hash to index properties and methods. Citrine Alpha 0.3, January 2016 - RELEASED. Compile to separate AST. Citrine Alpha 0.4 March 2016 - RELEASED. First plugin (included): Query String Parser (GET/POST). Citrine Alpha 0.5 May 2016 - RELEASED. Error handler, stack traces.

4

Playground | Citrine

http://www.citrine-lang.org/playground.ctr

Welcome to the Citrine playground. Here you can try Citrine. Yourself and have some fun with the language. Please be aware that this playground is running on my servers and the code will also be executed on my servers so please be careful. Why don't you use any of the example programs listed here. I might add even more examples later on. If you have some cool ideas for demo example programs for the playground page, feel free to mail them to me! Example Program: a simple Hello World. Or go back to homepage.

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

4

LINKS TO THIS WEBSITE

swikis.ddo.jp swikis.ddo.jp

日本語版Squeakでプログラミングしよう

http://swikis.ddo.jp/squeak

アラン ケイさんの研究所で開発中のプログラミング言語 GP についてです。 原則 演習用イメージ を使っていただくのを前提としていますが、3.8系に対応したサンプルコードを以下に用意しました(2007/10/28). Squeak 3.8(Squeakland 2005J)用サンプルコード. Http:/ umejava.kt.fc2.com/. Http:/ blueplane.s196.xrea.com/.

gabordemooij.com gabordemooij.com

Tiniest query builder

http://www.gabordemooij.com/tiniest_query_builder

Notes on Software Development. Personally, I am not a fan of Query Builders. I prefer pure SQL. However, constructing dynamic. Queries from search forms can be quite tedious:. Sql = 'SELECT * FROM book'; $isFirst = true; if (isset($ GET['title']) { if ($isFirst) $sql .= ' WHERE '; $sql .= ' title =? If (isset($ GET['price']) { if ($isFirst) $sql .= ' WHERE ' else $sql .= ' AND '; $sql .= ' price? There are several issues with this code, first of all it's very verbose. And we need to keep track of the glue.

gabordemooij.com gabordemooij.com

Testing protected methods

http://www.gabordemooij.com/testing_protected_methods

Notes on Software Development. While cleaning up my architecture for RedBeanPHP. I realized there is a much simpler way to test protected methods. No need to test these methods indirectly. Or using some reflection. API It's so simple, I can't believe I did not think of this earlier! Anyway, let's assume we have a class Cat:. Class Cat { protected function secretlyTakesOverWorld() { . } }. Now we would like to test the method 'secretlyTakesOverWorld'. In PHP, in constrast to Smalltalk. Developing in PHP, ...

gabordemooij.com gabordemooij.com

Blackscript

http://www.gabordemooij.com/blackscript

Notes on Software Development. By Gabor de Mooij. I have been working with JavaScript. Since the nineties, although I have to admit I did not fully grasp the language until 2006, when I began working on an AJAX based CMS. Since then I have been trying to find my personal style of JavaScript, especially with regard to object-oriented programming. In JavaScript there are many ways to leverage object-oriented programming techniques, you can use libraries to add syntactic sugar. Or the prototype pattern.

gaborsoftware.nl gaborsoftware.nl

Gabor Software

http://www.gaborsoftware.nl/about.ctr

Mijn naam is Gabor de Mooij. In 2004 studeerde ik af als cognitief wetenschapper aan de Universiteit Leiden. Specialisatie aandachtsprocessen). Door de dynamiek van de economie werd ik softwareontwikkelaar, bovendien was programmeren altijd al wel een passie van mij. Na het behalen van de nodige certificaten was mijn eerste project het meeschrijven aan een electronisch patiëntendossier (EPD) voor de GGZ. Door mijn achtergrond heb ik een unieke kijk op de ontwikkeling van software. Terug naar de homepage.

gaborsoftware.nl gaborsoftware.nl

Gabor Software

http://www.gaborsoftware.nl/faq.ctr

FAQ - Veelgestelde vragen. Welkom op de FAQ-pagina. Hier staan veelgestelde vragen en de bijbehorende antwoorden. Staat uw vraag er niet tussen? Stuur dan gerust even een e-mailtje. De FAQ-pagina is een zogenaamd levend. Document; het wordt constant bijgewerkt. Welke diensten levert Gabor Software. U kunt mij inhuren voor alle programmeeropdrachten. Van een simpele website tot aanpassingen in een complexe bedrijfsapplicatie. Ik spreek. Bouw je ook websites? Doe je ook hosting? Doe je ook NodeJS. Illustra...

gaborsoftware.nl gaborsoftware.nl

Renovatie

http://www.gaborsoftware.nl/renovatie.ctr

Er komt steeds meer software. Met elke nieuwe ontwikkeling komen er ook nieuwe inzichten over hoe software geschreven moet worden. Daarom wordt er vaak geroepen bij projecten om een 'rewrite' te doen. Een 'rewrite' betekent in de meeste gevallen dat alle oude code van tafel geveegd wordt en dat het product van scratch. Opnieuw opgebouwd moet worden. Dit is geen kleinigheid. Een rewrite. Opgedaan bij de vorige poging, opnieuw. In ontwikkeling, immers het wordt steeds lastiger voor het nieuwe product om he...

swikis.ddo.jp swikis.ddo.jp

Umejava Swiki

http://swikis.ddo.jp/umejava

Sorry this page is written in Japanese.). アラン ケイさんの研究所で開発中のプログラミング言語 GP についてです。 基本的にメールは読みませんが(道具をもっていきません)、どうしても、という場合は、umejava2002(あっと)yahoo.co.jp に送ってみてください。 Http:/ swikis.ddo.jp/umejava/rss10などで更新履歴が見れます。 Http:/ ma2tak.dyndns.org:8888/ma2tak/1222. Http:/ swiki.itolab.com/swiki-fun/help.

gaborsoftware.nl gaborsoftware.nl

Gabor Software

http://www.gaborsoftware.nl/producten.ctr

GaborSoftware heeft een uitgebreid productportfolio om uw software krachtiger. Te maken en sneller. Te laten ontwikkelen. Mijn producten genieten brede internationale ondersteuning en worden al jarenlang als betrouwbaar. Gezien. Alle producten komen in twee smaken, de trial. Edition. Alle trial editions zijn onbeperkt te gebruiken conform de BSD. RedBeanPHP is een krachtige ORM. RedBeanPHP Trial Edition € 0,-. Is ideaal voor open source. Ontwikkelaars. Deze editie bevat:. 1 jaar lang 20 uur. Voor PHP&#46...

UPGRADE TO PREMIUM TO VIEW 3 MORE

TOTAL LINKS TO THIS WEBSITE

12

OTHER SITES

citrine-holdings.com citrine-holdings.com

Home

Your Perfect Partner for Your New View on Life. 25 july, 2012. Join a group to check out the latest listings in our area. Connect with others going through the same process you are! 30 july, 2012. The New Home Process. Come out and find out everything you need to know to get started on moving into the next stage of your life. Latest news and events. Let us go to work for you. Start by searching our list of available commercial properties.

citrine-homes.com citrine-homes.com

This Web site coming soon

If you are the owner of this web site you have not uploaded (or incorrectly uploaded) your web site. For information on uploading your web site using FTP client software or web design software, click here for FTP Upload Information.

citrine-iolite-jewelry.com citrine-iolite-jewelry.com

Citrine Iolite Jewelry

Thank you for visiting Citrine Iolite Jewelry.

citrine-k.deviantart.com citrine-k.deviantart.com

Citrine-K (Citrine-K /'sɪtriːn - keɪ/) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Walking inside a suitcase*. Citrine-K /'sɪtriːn - keɪ/. Deviant for 5 Years. This deviant's full pageview. Last Visit: 6 hours ago. Save the Re...

citrine-kadabra.livejournal.com citrine-kadabra.livejournal.com

Everywhere and Anywhere at Once

Everywhere and Anywhere at Once. The little voice telling you to do naughty things. November 24th, 2020. I figure that its time to make this list public. It may take me a while to make all of the individual entries public, so until further notice this list is under construction. At least it will link back to the Pokanon Kink Meme. Prompts Ive filled as of. Nov 24, 2:30 pm. Dec 23, 8:00 pm. Dec 31, 2010 7:36 pm. Feb 11, 2011 4:26 pm. Apr 7, 2011 8:37 pm. May 27, 2011 8:01 pm. Jul 2, 2011 10:12 pm. I dont ...

citrine-lang.org citrine-lang.org

Citrine Programming Language

This planet deserves a better class of language. The Citrine Project aims to produce a simple. Scripting language for UNIX. I created Citrine because I wanted a clean and simple programming language that combines Smalltalk. Like messaging with prototypal inheritance (as in JavaScript. But not as convoluted) and Dynamic Scoping. Citrine is a product of Gabor Software. Dutch) founded by Gabor de Mooij. Citrine is open source and licensed BSD. January 2017 - POSIX regegular expressions added. Small core, ex...

citrine-quartz.deviantart.com citrine-quartz.deviantart.com

citrine-quartz - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 6 Months. This deviant's full pageview. Last Visit: 10 hours ago. This is the place where you can personalize your profile! Admin o...

citrine-services.com citrine-services.com

Citrine Services - partenaire informatique - offshore tunisie

Des développeurs de talent pour des produits de qualités. Quel que soit votre domaine d'activité, CITRINE Services vous accompagne sur toutes les phases de vos projets. Notre équipe est formée à élaborer avec vous un plan de développement adapté à vos objectifs dans le respect de vos souhaits et de votre budget. Notre but est de proposer à nos clients les outils indispensables à leur développement dans l'optique de profiter à long terme du potentiel Internet.

citrine-services.eu citrine-services.eu

Hébergement, enregistrement de nom de domaine et services internet par 1&1 Internet

CE NOM DE DOMAINE VIENT D'ÊTRE ENREGISTRÉ POUR L'UN DE NOS CLIENTS. Avez-vous besoin, vous aussi, d'une VRAIE solution d'hébergement VRAIMENT accessible? Vous propose les solutions les moins chères du Net pour réaliser votre site web en toute simplicité, que vous soyez débutant ou expérimenté. Des solutions d'hébergement complètes. Une large gamme de logiciels offerts. Un espace de configuration intuitif. Une assistance technique efficace. Aucun engagement de durée. Garantie satisfait ou remboursé.

citrine-tf.skyrock.com citrine-tf.skyrock.com

citrine-tf's blog - une famille c'est pour la vie - Skyrock.com

Une famille c'est pour la vie. Bonjour ce blog représente l'image de la 4em citrine et La 4em Amétiste comme la 5 benjoin et la 5 bauhinia a été séparé en deux c pour cela qu'on a voulu formé une famille et si vous passez par là alors laissez des com's cela nous fera trés plaisirs. nous vous souhaitons une bonne visites. 30/08/2007 at 4:33 AM. 20/08/2008 at 3:42 AM. Subscribe to my blog! Voici la fin de tout nos délires. voici la fin petetre de ce blog! Maintenant on a tous était séparé et on est déçus!