He slouched off, back toward the school.
他无精打采的回去了学校。

I heard a low chuckle.
我听到了低声的笑。

Edward was walking past the front of my truck, looking straight forward, his lips pressed together.
Edward从我的卡车面前走过,一直向前看着,它的嘴唇紧紧抿着。

I yanked the door open and jumped inside, slamming it loudly behind me.
我猛地打开门然后跳进去,然后重重的关上了门。

I revved the engine deafeningly and reversed out into the aisle.
我轰鸣着引擎倒车出了过道。

Edward was in his car already, two spaces down, sliding out smoothly in front of me, cutting me off.
在离我两个停车位远的地方,爱德华已经坐在车里了,他把车平稳的停在我的前面。

He stopped there — to wait for his family;
他停在那里等他的家里人。

I could see the four of them walking this way, but still by the cafeteria.
我能看见他们四个走在一起,但是还在自助餐厅旁的路上。

I considered taking out the rear of his shiny Volvo, but there were too many witnesses.
我真的想直接装上他光亮的Volvo,但是有太多的目击者了。

I looked in my rearview mirror.
我看着我的反光镜。

A line was beginning to form. Directly behind me, Tyler Crowley was in his recently acquired used Sentra, waving.
车排成了一条长龙。执着的跟着我,我后面的第一辆车,是泰勒刚弄到的二手森特拉,他正坐在车里向我挥手。

I was too aggravated to acknowledge him.
我太生气以至于不想和他打招呼。

Chapter 4 Invitations——15的更多相关文章

  1. Chapter 4 Invitations——28

    "Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...

  2. Chapter 4 Invitations——27

    "Myself, obviously." He enunciated every syllable, as if he were talking to someone mental ...

  3. Chapter 4 Invitations——26

    "I wanted to ask you something, but you sidetracked me," he chuckled. He seemed to have re ...

  4. Chapter 4 Invitations——25

    "So you are trying to irritate me to death? Since Tyler's van didn't do the job?" "所以 ...

  5. Chapter 4 Invitations——24

    "How do you do that?" I asked in amazed irritation. “你是怎么做到的?”我惊讶的问道. "Do what?" ...

  6. Chapter 4 Invitations——23

    The next morning, when I pulled into the parking lot, I deliberately parked as far as possible from ...

  7. Chapter 4 Invitations——22

    "Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had ...

  8. Chapter 4 Invitations——21

    "Dad?" I asked when he was almost done. “爸?”我当他快吃完的时候问道. "Yeah, Bella?" “怎么了,Bel ...

  9. Chapter 4 Invitations——20

    Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...

随机推荐

  1. [OC] 各型号iPhone的屏幕分辨率与开发使用的数值

  2. SPFA板子 (背景:Luogu P3371 单源最短路径)

    Luogu P3371 单源最短路径 题目描述 如题,给出一个有向图,请输出从某一点出发到所有点的最短路径长度. 输入输出格式 输入格式: 第一行包含三个整数N.M.S,分别表示点的个数.有向边的个数 ...

  3. Class 和 普通构造函数区别

    1. Class 在语法上更加贴合面向对象的写法 2. Class在实现继承上更加易读.易理解 3. 更易于写java等后端语言 4.本质还是语法糖,使用prototype

  4. 查看mac系统版本

    打开终端, 输入命令 uname -a 回车 x86_64 表示系统为64位 i686 表示系统32位的

  5. vue 路由跳转,传参

    一.直接跳转 //js1.this.$router.push('/ad_new') //html 2.<router-link to="/ad_check"> < ...

  6. 你不知道的JS之作用域和闭包(五)作用域闭包

    原文:你不知道的js系列 一个简单粗暴的定义 闭包就是即使一个函数在它所在的词法作用域外部被执行,这个函数依然可以访问这个作用域. 比如: function foo() { var a = 2; fu ...

  7. 你不知道的JS之作用域和闭包(四)(声明)提升

    原文:你不知道的js系列 先有鸡还是先有蛋? 如下代码: a = 2; var a; console.log( a ); 很多开发者可能会认为结果会输出 undefined,因为 var a 在 a ...

  8. 菜鸡谈OO 第二单元总结

    “欢迎来到(玄学)多线程的新世界” Homework1 单部傻瓜电梯调度 Part1 多线程设计策略 第一次学到了线程这个概念,与之前的编程体验大有不同.最大的区别在于从原本的线性发生程序变成了多个行 ...

  9. docker kubernetes Swarm容器编排k8s CICD部署

    1docker版本 docker 17.09 https://docs.docker.com/ appledeAir:~ apple$ docker version Client: Docker En ...

  10. csv 数据

    csv数据:逗号分隔值,其文件以纯文本的形式存储表格数据(数据和文本).csv模块是python的内置模块,需要引用后再使用 csv.reader(csv_file) #使用with结构 with o ...