Skip to content

Commit

Permalink
Update hello world example
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Bachmann committed May 1, 2024
1 parent be2ee04 commit 64d9ee8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/frontend/reducers/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { PayloadAction, createSlice } from '@reduxjs/toolkit';
import { performFormat } from './output/format';
import { performGistLoad } from './output/gist';

const initialState: string = `use "std/libc/io.bl"
use "std/libc/proc.bl"
const initialState: string = `use {puts}: "std/libc/io.bl"
use {exit}: "std/libc/proc.bl"
fn main() {
puts("Hello, world!")
Expand Down

0 comments on commit 64d9ee8

Please sign in to comment.