[Info-vax] Wordle on VMS ?
    Arne Vajhøj 
    arne at vajhoej.dk
       
    Tue Jun  7 20:27:54 EDT 2022
    
    
  
On 6/7/2022 1:39 PM, Simon Clubley wrote:
> Has anyone thought about doing a Wordle clone for VMS ?
> 
> No interest in doing this myself, but I thought I would put the idea
> into your heads after seeing that someone has created a Wordle clone
> in Pascal for Multics:
> 
> https://www.theregister.com/2022/06/07/wordle_multics/
The code linked in the article build on VMS with 3 tiny changes:
    63     fconnect(inwords, 'vfile_ words.txt');
->
    63     open(inwords, 'vfile_ words.txt', old);
    75     fclose(inwords);
->
    75     close(inwords);
   108     chosenword := wordlist[trunc(clock) mod MAX_WORD_INDEX];
->
   108     chosenword := wordlist[clock mod MAX_WORD_INDEX];
Arne
    
    
More information about the Info-vax
mailing list