Versions

  • v4

    10/23/2023
    Open: Version
    Changes from v3 to v4
    +3
    -1
    // Send me a message. Use the `you` parameter so add your name.
    export let tell = (msg, you) => {
    @valilo.inbox.push({ time: Date.now(), msg, you });
    return 1;
    };
    import { inbox } from "https://esm.town/v/valilo/inbox";

    // Send me a message. Use the `you` parameter so add your name.
    export let tell = (msg, you) => {
    inbox.push({ time: Date.now(), msg, you });
    return 1;
    };
  • v3

    2/27/2023
    Open: Version
    Changes from v2 to v3
    +4
    -1
    // Send me a message. Use the `you` parameter so add your name.
    export tell = (msg, you) => @valilo.inbox.push({ time: Date.now(), msg, you });
    // Send me a message. Use the `you` parameter so add your name.
    export let tell = (msg, you) => {
    @valilo.inbox.push({ time: Date.now(), msg, you });
    return 1;
    };
  • v2

    2/27/2023
    Open: Version
    +2
    -0

    // Send me a message. Use the `you` parameter so add your name.
    export tell = (msg, you) => @valilo.inbox.push({ time: Date.now(), msg, you });
1
Next
Updated: October 23, 2023