Guido van Robot 4.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Guido van Robot 4.1 (Default branch)
# 1  
Old 01-06-2009
Guido van Robot 4.1 (Default branch)

ImageGuido van Robot, or GvR for short, is aminimalistic programming language that providesjust enough syntax to help students learn theconcepts of sequencing, conditional branching,looping, and procedural abstraction. Its biggeststrength is that it permits this learning in anenvironment that combines the thrill ofproblem-solving with instant visual feedback.License: GNU General Public License (GPL)Changes:
A bug which lead to a crash in the worldbuilderwas fixed.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Hardware

Arduino Robot Tank Project

Normally I'm not into kits, but I thought my wife would enjoy this one since she is a big fan of robots and droids on StarWars! We are done with the basic mechanical assembly and starting on the electronics assembly today. The robot's "brain" consists of three levels. The Arduino board, on... (5 Replies)
Discussion started by: Neo
5 Replies

2. What is on Your Mind?

Poster of the Year 2019 - Jeroen van Dijke

Today, I am very pleased to announce the Poster of the Year Award, 2019 is Jeroen van Dijke (Scrutinizer) Jeroen has been a member of unix.com just over 11 years (He first joined unix.com in November 2008) and has been a very valuable, reliable and thoughtful resource for countless people over... (3 Replies)
Discussion started by: Neo
3 Replies

3. What is on Your Mind?

Guido van Rossum resigns as Python Leader...

Yup it's true: Transfer of power This will put Python development in disarray. Which reminded me of this thread I posted some time ago: https://www.unix.com/what-is-on-your-mind-/249767-has-python-lost-plot.html MadeInGermany's post 3 is probably one of the reasons but not quoted.... (1 Reply)
Discussion started by: wisecracker
1 Replies

4. Windows & DOS: Issues & Discussions

Adding robot and drives

Hi All Im running veritas netbackup 6.5.5, on MWindows 2003 master server. Ive just added a Quantum PX500 with 2 drives, the problem im facing is that now under the storage unit tab on console all the storage unit types for NDMP have the new robot listed and not the original one. The set up i... (0 Replies)
Discussion started by: blossy786
0 Replies
Login or Register to Ask a Question
DO(7)							  PostgreSQL 9.2.7 Documentation						     DO(7)

NAME
DO - execute an anonymous code block SYNOPSIS
DO [ LANGUAGE lang_name ] code DESCRIPTION
DO executes an anonymous code block, or in other words a transient anonymous function in a procedural language. The code block is treated as though it were the body of a function with no parameters, returning void. It is parsed and executed a single time. The optional LANGUAGE clause can be written either before or after the code block. PARAMETERS
code The procedural language code to be executed. This must be specified as a string literal, just as in CREATE FUNCTION. Use of a dollar-quoted literal is recommended. lang_name The name of the procedural language the code is written in. If omitted, the default is plpgsql. NOTES
The procedural language to be used must already have been installed into the current database by means of CREATE LANGUAGE. plpgsql is installed by default, but other languages are not. The user must have USAGE privilege for the procedural language, or must be a superuser if the language is untrusted. This is the same privilege requirement as for creating a function in the language. EXAMPLES
Grant all privileges on all views in schema public to role webuser: DO $$DECLARE r record; BEGIN FOR r IN SELECT table_schema, table_name FROM information_schema.tables WHERE table_type = 'VIEW' AND table_schema = 'public' LOOP EXECUTE 'GRANT ALL ON ' || quote_ident(r.table_schema) || '.' || quote_ident(r.table_name) || ' TO webuser'; END LOOP; END$$; COMPATIBILITY
There is no DO statement in the SQL standard. SEE ALSO
CREATE LANGUAGE (CREATE_LANGUAGE(7)) PostgreSQL 9.2.7 2014-02-17 DO(7)