Practice Exercises from the Move BookFREE

Practice Move ProgrammingFrom the Move Book

Interactive exercises based on the Move Book. Learn the concepts, then practice them here.Read the Move Book → Practice with Suilings → Master Move

Based on Move Book
57 Practice Exercises
100% Free
No Setup Required
coin_balance.move
module suilings::coin_balance;

use sui::coin::{Self, Coin};
use sui::sui::SUI;

/// Returns the balance of a SUI coin
public fun get_balance(coin: &Coin<SUI>): u64 {
    coin.value()
}

#[test]
fun test_balance() {
    let coin = coin::mint_for_testing<SUI>(1000);
    assert!(get_balance(&coin) == 1000);
    coin::burn_for_testing(coin);
}
+

Suilings ❤️ Move Book

Every exercise on Suilings is designed to complement the Move Book. We link directly to the relevant chapters, so you can learn the theory and practice immediately. No separate content, no deviation—just pure practice.

57
Practice Exercises
100%
Free Forever
0
Setup Required
Move
Book Aligned
Simple Process

Start Learning in 3 Steps

No complicated setup. No local environment. Just open your browser and start coding.

1
Choose Exercise
Pick from 57 curated exercises covering basics to advanced Move concepts
2
Write Code
Code directly in your browser with syntax highlighting and real-time validation
3
Get Results
Instant compilation feedback and track your progress on the leaderboard
Platform Features

Everything You Need to Succeed

A complete learning platform designed for aspiring blockchain developers

Zero Setup
No installation required. Start coding in seconds without any dependencies
Real-Time Feedback
Instant compilation results and test validation as you code
Move Book Aligned
Every exercise links to the Move Book chapter—learn theory, practice immediately
Professional IDE
Monaco editor with Move syntax highlighting and auto-completion
Gamified Learning
Track progress, earn achievements, and compete on leaderboards
Community Driven
Join a growing community of Sui developers worldwide
Limited Time Offer

Start Building on SuiToday, For Free

Master Move programming through hands-on practice. Start coding in under 60 seconds.

100% Free Forever
57 Exercises
No Setup Required