AKA NevilleDN2 @ uq - usb
International Travels Brag Sheet
editYear+: | |
Month+: | |
Week+: | |
Day+: | |
Hour+: |
and last - but not least - the Republic of Whangamomona |
Idea hijacked from Thryduulf, from an idea and layout pilfered from Dandelion1, as seen on User:StuffOfInterest's page, who lifted it from Harro5, as seen on Calton's page, who took it from Salsb, who stole it from Guettarda who borrowed it from White Cat. |
Languages
editWikipedia:Babel | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
Search user languages |
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
At last, a barn star for me
editCuriously cheerful wikipedia201x contributors I have meet recently
edit- re: ALGOL 68G diff archive.orgDeletion log: ALGOL 68G sigh... c.f. User talk:RHaworth#ALGOL 68G
Test for the arrival of GeSHi version ≥ v1.0.8.8.4
editALGOL 68
editsyntaxhighlight
editdef quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
par: Parallel processing
editALGOL 68 supports programming of parallel processing. Using the keyword PAR, a collateral clause is converted to a parallel clause, where the synchronisation of actions is controlled using semaphores. In A68G the parallel actions are mapped to threads when available on the hosting operating system. In A68S a different paradigm of parallel processing was implemented (see below).
SyntaxHighlight_GeSHi
- https://www.mediawiki.org/wiki/Extension:SyntaxHighlight
- https://gerrit.wikimedia.org/g/mediawiki/extensions/SyntaxHighlight_GeSHi
PROC
eat = VOID: ( muffins-:=1; print(("Yum!",new line))),
speak = VOID: ( words-:=1; print(("Yak...",new line)));
INT muffins := 4, words := 8;
SEMA mouth = LEVEL 1;
PAR BEGIN
WHILE muffins > 0 DO
DOWN mouth;
eat;
UP mouth
OD,
WHILE words > 0 DO
DOWN mouth;
speak;
UP mouth
OD
END
vs.
PROC eat = VOID: ( muffins-:=1; print(("Yum!",new line))), speak = VOID: ( words-:=1; print(("Yak...",new line))); INT muffins := 4, words := 8; SEMA mouth = LEVEL 1; PAR BEGIN WHILE muffins > 0 DO DOWN mouth; eat; UP mouth OD, WHILE words > 0 DO DOWN mouth; speak; UP mouth OD END