Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 398 Bytes

codex-prompt-examples.md

File metadata and controls

24 lines (14 loc) · 398 Bytes

Codex Prompt Examples

sketch.js

/* Draw a white house with a red roof and a blue door. Brown roof. Two grey windows. Green grass. Yellow sun. Blue sky. */ */

math.js

Create a list of the first 10 prime numbers

primes = []

for num in range(2, 100): if all(num % i != 0 for i in range(2, num)): primes.append(num) print(primes)

Demonstrate project folder awareness