Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone,
I am currently on the process of learning Lisp coding. I am trying to do an exercise and it is basically this python code:
import random target_num, guess_num = random.randint(1, 10), 0 while target_num != guess_num: guess_num = int(input('Guess a number between 1 and 10 until you get it right : ')) print('Well guessed!')
How would I write thin in Lisp to run it on AutoCAD?
Solved! Go to Solution.