Chapter 4 Invitations——16
While I was sitting there, looking everywhere but at the car in front of me, I heard a knock on my passenger side window.
当我一直坐在那里的时候,到处向我前方张望着,除了眼前的车子,我听到了有人敲打我副驾驶的车窗。
I looked over; it was Tyler.
我看过去,原来是Tyler
I glanced back in my rearview mirror, confused. His car was still running, the door left open.
我撇了一眼我的反光镜,疑惑着。他的车任然启动着,左边的门还开着。
I leaned across the cab to crank the window down.
我倾斜过去摇下车窗。
It was stiff. I got it halfway down, then gave up.
手柄很僵硬。我摇下了一半然后就放弃了。
"I'm sorry, Tyler, I'm stuck behind Cullen."
“抱起Tyler,我跟Cullen太近了”
I was annoyed — obviously the holdup wasn't my fault.
我有点生气——显而易见交通堵塞不是我的问题。
"Oh, I know — I just wanted to ask you something while we're trapped here." He grinned.
“哦,我知道——我也被卡主了我就只是想来问你一些事情”他边笑边说道。
This could not be happening.
这一切不应该发生的。
"Will you ask me to the spring dance?" he continued.
“你会邀请我去春天舞会吗?”他继续说道。
"I'm not going to be in town, Tyler."
“我不会去的Tyler”
My voice sounded a little sharp.
我的生气听上去有点尖锐。
I had to remember it wasn't his fault that Mike and Eric had already used up my quota of patience for the day.
我不得不说这不是他的错,因为Mike和Eric今天已经耗完了我全部的耐心。
"Yeah, Mike said that," he admitted.
“是的,Mike也是这么说的,”他承认道。
Chapter 4 Invitations——16的更多相关文章
- Chapter 4 Invitations——28
"Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...
- Chapter 4 Invitations——27
"Myself, obviously." He enunciated every syllable, as if he were talking to someone mental ...
- Chapter 4 Invitations——26
"I wanted to ask you something, but you sidetracked me," he chuckled. He seemed to have re ...
- Chapter 4 Invitations——25
"So you are trying to irritate me to death? Since Tyler's van didn't do the job?" "所以 ...
- Chapter 4 Invitations——24
"How do you do that?" I asked in amazed irritation. “你是怎么做到的?”我惊讶的问道. "Do what?" ...
- Chapter 4 Invitations——23
The next morning, when I pulled into the parking lot, I deliberately parked as far as possible from ...
- Chapter 4 Invitations——22
"Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had ...
- Chapter 4 Invitations——21
"Dad?" I asked when he was almost done. “爸?”我当他快吃完的时候问道. "Yeah, Bella?" “怎么了,Bel ...
- Chapter 4 Invitations——20
Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...
随机推荐
- Linux top命令的用法详细详解
首先介绍top中一些字段的含义: VIRT:virtual memory usage 虚拟内存1.进程“需要的”虚拟内存大小,包括进程使用的库.代码.数据等2.假如进程申请100m的内存,但实际只使用 ...
- toString
在java中使用toString: 如果在Java在输出定义一个Person类 然后实例化person per 直接用system.out.println(per);无法得到我们想要的实例化内容 p ...
- Python-list,字典,Tuple
list:用[]包围,逗号隔开如:l = [1,2,3] 其他用法:li = ["a" ,"b" , "c", "d"] ...
- DWM1000 Blink结构 -- 帧过滤第一节
DWM1000 帧结构分析主要学习DWM1000 帧过滤功能,希望在目前DS-TWR定位系统中增加中断和帧过滤功能,帧过滤功能可以有效减少系统中的各个模块同时收发数据时的干扰问题,从而极大的提供系统稳 ...
- ES6新增的常用数组方法(forEach,map,filter,every,some)
ES6新增的常用数组方法 let arr = [1, 2, 3, 2, 1]; 一 forEach => 遍历数组 arr.forEach((v, i) => { console.log( ...
- 【ASP】session实现购物车
1.问题提出 利用session内置对象,设计并实现一个简易的购物车,要求如下: 1)利用用户名和密码,登录进入购物车首页 2)购物首页显示登录的用户名以及该用户是第几位访客.(同一用户的刷新应该记录 ...
- JavaScript / 本地存储
cookie 首先让我们先了解一下,什么是cookie,cookie是浏览器提供的一种机制,他将document.cookie的接口提供给JavaScript使其可以对cookie进行控制,但cook ...
- 在IIS上新发布的网站,样式与js资源文件加载不到(资源文件和网页同一个域名下)
在IIS上新发布的网站,网站能打开,但样式与js资源文件加载不到(资源文件和网页是同一个域名下,例如:网页www.xxx.com/index.aspx,图片www.xxx.com/pic.png). ...
- 请输入一个大于7的整数,输出小于k并且至少满足下面2个条件中的1个条件的所有正整数
import java.util.Scanner; /** * @author:(LiberHome) * @date:Created in 2019/3/6 22:06 * @description ...
- JavaScript中如何检测一个变量是一个String类型?
typeof x === "string" typeof(x) === "string' // 小写 x.constructor === String // 大写类型 同 ...