Select the types of activity you want to include in your feed.
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2026 The Gleam contributors 3 4import one 5 6pub fn two_error() { 7 // This module depends on `one` which itself has an error. 8 // So this should not result in an error!! 9 1 + False 10}