aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter1_functions/lesson10_deprecations/code.gleam
blob: 26a8f0b039349ddf0148721821e24646c6be1c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub fn main() {
  old_function()
  new_function()
}

@deprecated("Use new_function instead")
fn old_function() {
  Nil
}

fn new_function() {
  Nil
}