APL (Dyalog Unicode), 9 bytes SBCS
Full program. Prompts stdin for n (actually works for the range 0–370–29). APL keywords are single character symbols, so this prints n symbols to stdout.
⎕↑156↓⎕AV
⎕AV the Atomic Vector (i.e. the character set)
156↓ drop the first 156 elements
⎕↑ prompt for n and take that many elements from the above
APL (Dyalog Unicode), 9 bytes SBCS
Full program. Prompts stdin for n (actually works for the range 0–37). APL keywords are single character symbols, so this prints n symbols to stdout.
⎕↑156↓⎕AV
⎕AV the Atomic Vector (i.e. the character set)
156↓ drop the first 156 elements
⎕↑ prompt for n and take that many elements from the above
APL (Dyalog Unicode), 9 bytes SBCS
Full program. Prompts stdin for n (actually works for the range 0–29). APL keywords are single character symbols, so this prints n symbols to stdout.
⎕↑156↓⎕AV
⎕AV the Atomic Vector (i.e. the character set)
156↓ drop the first 156 elements
⎕↑ prompt for n and take that many elements from the above
APL (Dyalog Unicode), 9 bytes SBCS
Full program. Prompts stdin for n (actually works for the range 0–37). APL keywords are single character symbols, so this prints n symbols to stdout.
⎕↑156↓⎕AV
⎕AV the Atomic Vector (i.e. the character set)
156↓ drop the first 156 elements
⎕↑ prompt for n and take that many elements from the above