blob: e04463679dd2811319192eaa1a6f6d38bc7d3c08 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:developer';
// Provides a context for evaluating Dart expressions, for local testing of the
// REPL without a Fuchsia system.
class Context {
int triple(int x) {
return x * 3;
}
void run() {
debugger();
}
}
void main() {
Context().run();
}