Getting started - unable to resolve symbol

As a greenhorn I’d appreciate your help please.
I’ve been following the Getting Started tutorial.

In tab 1 of Terminal I’m seeing this, which looks okay:
Local forwarding listening on ::1 port 8182.
debug1: channel 1: new [port listener]
debug1: Requesting #no-more-sessions@openssh.com
debug1: Entering interactive session.
debug1: pledge: network
debug1: client_input_global_request: rtype #hostkeys-00@openssh.com want_reply 0
debug1: Connection to port 8182 forwarding to socks port 0 requested.
debug1: channel 2: new [dynamic-tcpip]
debug1: channel 2: free: direct-tcpip: listening port 8182 for entry.garystack2.us-east-2.datomic.net port 8182, connect from 127.0.0.1 port 60931 to 127.0.0.1 port 8182, nchannels 3

But in tab 2 of my Terminal I can’t get further than this:

Garys-MacBook-Pro:garydatomic garyhudson$ clj
Clojure 1.10.1
(def cfg {:server-type :ion
:region “us-east-2”
:system “garystack2”
:endpoint “http://entry.garystack2.us-east-2.datomic.net:8182/
:proxy-port 8182})
Syntax error compiling at (REPL:1:1).
Unable to resolve symbol: “us-east-2” in this context
user=>

What am I doing wrong please?
Thanks
Gary

It looks like you have non-ascii double quotes around those strings.

Agreed. If you’re copying/pasting the configuration from somewhere, it’s possible you’ve ended up with “smart” quotes, which are not the same character as the ASCII double quote.

You are very kind @tslocke and @marshall - this has solved my problem. I’m back on the tutorial now :slight_smile:
Much obliged